mirror of
https://github.com/TinyCC/tinycc.git
synced 2025-12-27 17:40:50 +00:00
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
|