mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-12-28 08:30:35 +00:00
17 lines
320 B
C
17 lines
320 B
C
/* 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);
|
|
}
|