aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20011119-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20011119-2.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20011119-2.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20011119-2.c b/gcc/testsuite/gcc.c-torture/compile/20011119-2.c
deleted file mode 100644
index ab649b98bc7..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20011119-2.c
+++ /dev/null
@@ -1,6 +0,0 @@
-extern inline int foo (void) { return 23; }
-int bar (void) { return foo (); }
-extern int foo (void) __attribute__ ((weak, alias ("xxx")));
-int baz (void) { return foo (); }
-int xxx(void) __asm__("xxx");
-int xxx(void) { return 23; }