URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [cpp/] [20000209-1.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do preprocess } */ /* Tests for line numbering around function-like macro calls. Bug found by Mark Mitchell. */ #define f(x) x #define g f f (3); #error here /* { dg-error "here" "case 0" } */ f (3); #error here /* { dg-error "here" "case 1" } */ (f )(3); #error here /* { dg-error "here" "case 2" } */ g (3); #error here /* { dg-error "here" "case 3" } */ (g )(3); #error here /* { dg-error "here" "case 4" } */ f /* some text */ (3); #error here /* { dg-error "here" "case 5" } */ (g /* some text */ )(3); #error here /* { dg-error "here" "case 6" } */
Go to most recent revision | Compare with Previous | Blame | View Log