mirror of git://gcc.gnu.org/git/gcc.git
* genconfig.c (walk_insn_part): Look at match_dups inside a label_ref.
From-SVN: r90530
This commit is contained in:
parent
f11edb4a09
commit
3d35950b39
|
@ -1,3 +1,7 @@
|
||||||
|
2004-11-12 Bernd Schmidt <bernd.schmidt@analog.com>
|
||||||
|
|
||||||
|
* genconfig.c (walk_insn_part): Look at match_dups inside a label_ref.
|
||||||
|
|
||||||
2004-11-12 Diego Novillo <dnovillo@redhat.com>
|
2004-11-12 Diego Novillo <dnovillo@redhat.com>
|
||||||
|
|
||||||
* tree-scalar-evolution.c (analyzable_condition): Remove
|
* tree-scalar-evolution.c (analyzable_condition): Remove
|
||||||
|
|
|
@ -98,7 +98,8 @@ walk_insn_part (rtx part, int recog_p, int non_pc_set_src)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LABEL_REF:
|
case LABEL_REF:
|
||||||
if (GET_CODE (XEXP (part, 0)) == MATCH_OPERAND)
|
if (GET_CODE (XEXP (part, 0)) == MATCH_OPERAND
|
||||||
|
|| GET_CODE (XEXP (part, 0)) == MATCH_DUP)
|
||||||
break;
|
break;
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue