]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/abi/enum1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / abi / enum1.C
diff --git a/gcc/testsuite/g++.dg/abi/enum1.C b/gcc/testsuite/g++.dg/abi/enum1.C
deleted file mode 100644 (file)
index 32e52fe..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// { dg-do run }
-
-#include <cstdlib>
-
-enum foo
-{
-  foo1   = 0,
-  foo2   = 0xffffffffffffffffULL,
-  foo3   = 0xf0fffffffffffffeULL
-};
-
-int main ()
-{
-  if (sizeof (enum foo) != sizeof (unsigned long long))
-    std::abort ();
-}