mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-19 19:34:19 +08:00
Some checks failed
build and test / test-x86_64-linux (push) Has been cancelled
build and test / test-x86_64-osx (push) Has been cancelled
build and test / test-aarch64-osx (push) Has been cancelled
build and test / test-x86-win32 (push) Has been cancelled
build and test / test-armv7-linux (push) Has been cancelled
build and test / test-aarch64-linux (push) Has been cancelled
build and test / test-riscv64-linux (push) Has been cancelled
Aka 'intmax_t', as recommended by newer standards.
For example
if (-0x80000000 < 0) is false,
but
#if (-0x80000000 < 0) is true
because in C, 0x80000000 is an unsigned int, Whereas in
a preprocessor expression, it is a signed long long, even
without LL suffix.
19 lines
161 B
Plaintext
19 lines
161 B
Plaintext
----- 1 ------
|
|
OK
|
|
----- 2 ------
|
|
OK
|
|
----- 3 ------
|
|
OK
|
|
----- 4 ------
|
|
OK
|
|
----- 5 ------
|
|
line 39
|
|
line ##
|
|
----- 10 ------
|
|
1 true
|
|
2 true
|
|
3 true
|
|
4 true
|
|
5 true
|
|
6 true
|