OSDN Git Service

PR target/10795
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 15 Jul 2003 13:44:50 +0000 (13:44 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 15 Jul 2003 13:44:50 +0000 (13:44 +0000)
* gcc.c-torture/compile/20030708-1.c: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69408 138bc75d-0d04-0410-961f-82ee72b054a4

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

index d13c570..85d684e 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;
+}