re PR target/10795 (ICE in extract_insn, at recog.c:2188)

PR target/10795
	* gcc.c-torture/compile/20030708-1.c: New.

From-SVN: r69408
This commit is contained in:
Kazu Hirata 2003-07-15 13:44:50 +00:00 committed by Kazu Hirata
parent 5df90541c7
commit aadf50ed06
2 changed files with 18 additions and 0 deletions

View 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.

View File

@ -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;
}