]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/array6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / array6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/array6.C b/gcc/testsuite/g++.old-deja/g++.other/array6.C
deleted file mode 100644 (file)
index ab076f2..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Special g++ Options: -O1
-
-int count = 0;
-
-double foo () {
-  count++;
-  return 0;
-};
-
-double bar () {
-  const double x[1] = { foo() };
-  return x[0];
-};
-
-int main () 
-{
-  bar();
-  if (count != 1)
-    return 1;
-};