]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/c99-func-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / c99-func-1.c
diff --git a/gcc/testsuite/gcc.dg/c99-func-1.c b/gcc/testsuite/gcc.dg/c99-func-1.c
deleted file mode 100644 (file)
index 43fb032..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Test for C99 __func__.  */
-/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
-/* { dg-do run } */
-/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
-
-extern void abort (void);
-extern int strcmp (const char *, const char *);
-extern void exit (int);
-
-int
-main (void)
-{
-  if (strcmp (__func__, "main") || sizeof (__func__) != 5)
-    abort ();
-  else
-    exit (0);
-}