URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [cpp/] [c99-empty-macro-args.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-std=c99 -pedantic" } */ #define f(a,b) f2(a,,b) #define f2(a,b,c) a; b; c; #define f3(a) a #define g() p() void p(void) {} void foo(void) { f(p(),p()); f2(p(),,p()); f3(); g(); }
Go to most recent revision | Compare with Previous | Blame | View Log