]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000822-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000822-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000822-1.c b/gcc/testsuite/gcc.c-torture/execute/20000822-1.c
deleted file mode 100644 (file)
index f4a084b..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef NO_TRAMPOLINES
-int f0(int (*fn)(int *), int *p)
-{
-  return (*fn) (p);
-}
-
-int f1(void)
-{
-  int i = 0;
-
-  int f2(int *p)
-  {
-    i = 1;
-    return *p + 1;
-  }
-
-  return f0(f2, &i);
-}
-#endif
-
-int main()
-{
-#ifndef NO_TRAMPOLINES
-  if (f1() != 2)
-    abort ();
-#endif
-  return 0;
-}