arm64: Improve constant generation, with tests.
[tinycc.git] / tests / tests2 / 71_macro_empty_arg.c
blobf0d3511b9d0d03ebf2c06de555df926b9a8dfb59
1 #include <stdio.h>
3 #define T(a,b,c) a b c
5 int main(void)
7 printf("%d", T(1,+,2) T(+,,) T(,2,*) T(,7,) T(,,));
8 return 0;