aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/special/gcsec-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/special/gcsec-1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/special/gcsec-1.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/special/gcsec-1.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/special/gcsec-1.c
deleted file mode 100644
index ef1434fbe..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/special/gcsec-1.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* AIX gld supports garbage collection. But AIX gcc does not support
- -ffunction-sections or -fdata-sections. */
-/* { dg-do run { xfail rs6000-*-aix* powerpc*-*-aix* } } */
-/* { dg-require-gc-sections "" } */
-
-/* { dg-options "-ffunction-sections -fdata-sections -Wl,--gc-sections" } */
-/* { dg-options "-ffunction-sections -fdata-sections -Wl,--gc-sections -static" { target static } } */
-
-#include <stdlib.h>
-
-static int unusedint=5;
-
-static int usedint=1;
-
-int unused(void) {
- return 1;
-}
-
-int foo(void) {
- return usedint;
-}
-
-int main(void) {
-
- if (foo())
- exit(0);
- else
- abort();
-}