URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [cpp/] [paste6.c] - Rev 853
Go to most recent revision | 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-warning "valid preprocessing" } */
Go to most recent revision | Compare with Previous | Blame | View Log