ira-conflicts.c (add_insn_allocno_copies): Fix wrong conditional.

2009-05-15  Manuel López-Ibáñez  <manu@gcc.gnu.org>

	* ira-conflicts.c (add_insn_allocno_copies): Fix wrong
	conditional.

From-SVN: r147595
This commit is contained in:
Manuel López-Ibáñez 2009-05-15 20:05:36 +00:00
parent 16a3d11cca
commit 1b53c5f35f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-05-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
* ira-conflicts.c (add_insn_allocno_copies): Fix wrong
conditional.
2009-05-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* doc/install.texi: Document MPC requirements, flags etc.

View File

@ -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)