]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/abi/mangle2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / abi / mangle2.C
diff --git a/gcc/testsuite/g++.dg/abi/mangle2.C b/gcc/testsuite/g++.dg/abi/mangle2.C
deleted file mode 100644 (file)
index e8b5f40..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Test that we handle mangling of statics in inlines properly.
-// { dg-options -fno-weak }
-// { dg-do run }
-
-inline int f ()
-{
-  static int nested;
-  nested = 24;
-  {
-    static int nested;
-    nested = 42;
-  }
-  return (nested != 24);
-}
-
-int main()
-{
-  return f ();
-}