aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/darwin-weakimport-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/darwin-weakimport-2.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/darwin-weakimport-2.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/darwin-weakimport-2.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/darwin-weakimport-2.c
deleted file mode 100644
index 1c9817222..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/darwin-weakimport-2.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* { dg-do compile { target *-*-darwin* } } */
-/* { dg-require-weak "" } */
-
-/* { dg-final { scan-assembler "weak_reference _foo" } } */
-
-extern int foo __attribute__((weak_import));
-
-int main(void)
-{
- if (&foo)
- return foo;
- return 0;
-}