]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/special/conpr-1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / special / conpr-1.C
diff --git a/gcc/testsuite/g++.dg/special/conpr-1.C b/gcc/testsuite/g++.dg/special/conpr-1.C
deleted file mode 100644 (file)
index c91753d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* { dg-do run } */
-
-#include <stdlib.h>
-
-class foo_t {
-    int x;
-public:
-    foo_t(void) { x=1; }
-    int get(void) { return x; }
-};
-
-static foo_t foo __attribute__((init_priority(5000)));
-
-int main(void) {
-
-    if (foo.get())
-        exit(0);
-    else
-        abort();
-}