URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [cpp/] [paste8.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do preprocess } */ /* { dg-options "" } */ int foo(int, ...); #define a(x, y...) foo(x, ##y) a(1) a(1, 2, 3) #define b(x, y, z...) foo(x, ##y) b(1, 2, 3) /* { dg-error "valid preprocessing token" } */ #define c(x, y, z...) foo(x, ##z) c(1, 2) c(1, 2, 3) #define d(x) fo(##x) d(1) /* { dg-error "valid preprocessing token" } */
Go to most recent revision | Compare with Previous | Blame | View Log