* gcc.dg/
20040124-1.c: Moved test from here...
* gcc.c-torture/compile/
20040124-1.c: ...to here.
From-SVN: r76639
+2004-01-26 Ian Lance Taylor <ian@wasabisystems.com>
+
+ * gcc.dg/20040124-1.c: Moved test from here...
+ * gcc.c-torture/compile/20040124-1.c: ...to here.
+
2004-01-26 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.dg/sparc-ret.c: Run only in 32-bit mode. Don't scan
--- /dev/null
+int
+f1 (int a, int b)
+{
+ int i, j, k;
+
+ switch (b)
+ {
+ case (-9):
+ j = 4;
+ break;
+ case (-10):
+ j = 10;
+ break;
+ case (-8):
+ j = 15;
+ break;
+ }
+
+ i = f2 (f3 (b == (-9) ? k : a), j);
+
+ return 0;
+}
+++ /dev/null
-/* This code crashed with the cse_condition_code_reg() pass on i686. */
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
-int
-f1 (int a, int b)
-{
- int i, j, k;
-
- switch (b)
- {
- case (-9):
- j = 4;
- break;
- case (-10):
- j = 10;
- break;
- case (-8):
- j = 15;
- break;
- }
-
- i = f2 (f3 (b == (-9) ? k : a), j);
-
- return 0;
-}