]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/other/pragma-re-1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / other / pragma-re-1.C
diff --git a/gcc/testsuite/g++.dg/other/pragma-re-1.C b/gcc/testsuite/g++.dg/other/pragma-re-1.C
deleted file mode 100644 (file)
index ec567f9..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* { dg-do compile { target *-*-solaris* } } */
-/* { dg-final { scan-assembler "bar" } } */
-/* { dg-final { scan-assembler-not "foo" } } */
-/* { dg-final { scan-assembler "_Z3bazv" } } */
-/* { dg-final { scan-assembler-not "baq" } } */
-
-#ifndef __PRAGMA_REDEFINE_EXTNAME
-#error 
-#endif
-
-#pragma redefine_extname foo bar
-extern "C" int foo(void);
-void *p = (void *)foo;
-
-#pragma redefine_extname baz baq
-extern int baz(void);
-void *q = (void *)baz;