]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/scc.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / scc.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/scc.c b/gcc/testsuite/gcc.c-torture/unsorted/scc.c
deleted file mode 100644 (file)
index 79ae4e1..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-foo (a, b)
-{
-  if (a < 0)
-    goto ret1;
-  if (a == 0)
-    return 2;
-  return 3;
- ret1:
-  return 1;
-}
-