]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/special/alias-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / special / alias-2.c
diff --git a/gcc/testsuite/gcc.dg/special/alias-2.c b/gcc/testsuite/gcc.dg/special/alias-2.c
deleted file mode 100644 (file)
index 5dd9f53..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* PR 3997 */
-/* { dg-do run } */
-
-extern void abort (void);
-extern void exit (int);
-
-void foo(void)
-{
-  exit(0);
-}
-
-static void bar(void) __attribute__((alias("foo")));
-
-int main()
-{
-  bar();
-  abort ();
-}