]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/special/gcsec-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / special / gcsec-1.c
diff --git a/gcc/testsuite/gcc.dg/special/gcsec-1.c b/gcc/testsuite/gcc.dg/special/gcsec-1.c
deleted file mode 100644 (file)
index 125ae1f..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/* { dg-do run } */
-
-#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();
-}