URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [cpp/] [paste6.c] - Rev 298
Compare with Previous | Blame | View Log
/* Regression test for paste appearing at the beginning of a set of actual arguments. Original bug exposed by Linux kernel. Problem reported by Jakub Jelinek <jakub@redhat.com>. */ /* { dg-do compile } */ extern int foo(int x); #define bar(x) foo(x) #define baz(x) bar(##x) int quux(int y) { return baz(y); } /* { dg-error "valid preprocessing" } */