re PR target/10795 (ICE in extract_insn, at recog.c:2188)
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 15 Jul 2003 13:44:50 +0000 (13:44 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 15 Jul 2003 13:44:50 +0000 (13:44 +0000)
PR target/10795
* gcc.c-torture/compile/20030708-1.c: New.

From-SVN: r69408

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/20030708-1.c [new file with mode: 0644]

index d13c5707a45ed5d8b2cdf609880b4e1d73f01fc1..85d684eb3fb7a895ff330c1298ceae039e9d5475 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-15  Kazu Hirata  <kazu@cs.umass.edu>
+
+       PR target/10795
+       * gcc.c-torture/compile/20030708-1.c: New.
+
 2003-07-15  Eric Botcazou  <ebotcazou@libertysurf.fr>
 
        * gcc.c-torture/execute/20030715-1.c: New test.
diff --git a/gcc/testsuite/gcc.c-torture/compile/20030708-1.c b/gcc/testsuite/gcc.c-torture/compile/20030708-1.c
new file mode 100644 (file)
index 0000000..5a693d8
--- /dev/null
@@ -0,0 +1,13 @@
+/* PR 10795.  */
+
+/* ix86_expand_carry_flag_compare() in i386.c swapped the comparison
+   operands without checking that the compare instruction, cmpl, would
+   accept the swapped operands.  */
+
+extern const char a[];
+
+int
+foo (const char *p)
+{
+  return (p > a) ? 0 : 2;
+}