]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/ptrmem6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / ptrmem6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/ptrmem6.C b/gcc/testsuite/g++.old-deja/g++.other/ptrmem6.C
deleted file mode 100644 (file)
index 7e9ab4e..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Build don't link:
-// crash test
-
-// Copyright (c) 2000, 2001 Free Software Foundation.
-// Distilled from a bug report by Eric Ford <eford@princeton.edu>
-
-extern double *y;
-extern double *x;
-extern int nPoints;
-
-void SetInitCond(void)
-{
-  int i;
-  for(i = 2; i < nPoints; ++i)
-    y[i] = y[nPoints] .* (x[i]-x[1]) / (x[nPoints]-x[1]);  // ERROR - .*
-}