diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a3b978091b2..b9a1ce20e833 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-05-15 Manuel López-Ibáñez + + * ira-conflicts.c (add_insn_allocno_copies): Fix wrong + conditional. + 2009-05-15 Kaveh R. Ghazi * doc/install.texi: Document MPC requirements, flags etc. diff --git a/gcc/ira-conflicts.c b/gcc/ira-conflicts.c index 56be23b21f3a..bc0c0ac11c86 100644 --- a/gcc/ira-conflicts.c +++ b/gcc/ira-conflicts.c @@ -489,7 +489,7 @@ add_insn_allocno_copies (rtx insn) ? operand : SUBREG_REG (operand)) != NULL_RTX) { str = recog_data.constraints[i]; - while (*str == ' ' && *str == '\t') + while (*str == ' ' || *str == '\t') str++; bound_p = false; for (j = 0, commut_p = false; j < 2; j++, commut_p = true)