URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [c99-func-3.c] - Rev 816
Compare with Previous | Blame | View Log
/* Test for C99 __func__: not merging with string literals. */ /* Origin: Joseph Myers <jsm28@cam.ac.uk> */ /* { dg-do run } */ /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */ extern void abort (void); extern void exit (int); int main (void) { if ("main" == __func__) abort (); else exit (0); }