mirror of
https://github.com/frida/tinycc
synced 2024-12-01 03:47:01 +03:00
a1c139063b
* correct -E output for the case ++ + ++ concatenation do this only for expanded from macro string and only when tcc_state->output_type == TCC_OUTPUT_PREPROCESS
9 lines
160 B
Plaintext
9 lines
160 B
Plaintext
extern int printf(const char *format, ...);
|
|
int main(void)
|
|
{
|
|
int a = 0, b = -1;
|
|
int i1 = a +++ ++ b;
|
|
printf("i1 = %d\n", i1);
|
|
return 0x1e -1;
|
|
}
|