]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/optimize2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / optimize2.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/optimize2.C b/gcc/testsuite/g++.old-deja/g++.jason/optimize2.C
deleted file mode 100644 (file)
index ade4531..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Used to crash on the alpha with optimization.
-// Special g++ Options: -w
-
-extern "C" void abort (void);
-
-struct Fix {
-  unsigned short l;
-};
-
-static inline void f (int len)
-{
-  if (len > 65535)
-    abort ();
-}
-
-struct Fix a = { 33 };
-
-main()
-{
-  f (a.l);
-}