diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/special/gcsec-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/special/gcsec-1.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/special/gcsec-1.c b/gcc/testsuite/gcc.dg/special/gcsec-1.c new file mode 100644 index 000000000..ef1434fbe --- /dev/null +++ b/gcc/testsuite/gcc.dg/special/gcsec-1.c @@ -0,0 +1,29 @@ +/* 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(); +} |