]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20010405-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20010405-1.c
diff --git a/gcc/testsuite/gcc.dg/20010405-1.c b/gcc/testsuite/gcc.dg/20010405-1.c
deleted file mode 100644 (file)
index b4d57a5..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-__inline__ double bar(double *x)
-{
-  static double a;
-  a = *x >= 0 ? *x : -*x;
-  return a;
-}
-
-int main(void)
-{
-  extern double bar();
-  double a;
-  static double b;
-  int r;
-  for (r = 1; r < 3; r++) {
-    a = 1.0;
-    b = bar(&a);
-  }
-  return 0;
-}