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
parent 16a3d11c
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> 2009-05-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* doc/install.texi: Document MPC requirements, flags etc. * doc/install.texi: Document MPC requirements, flags etc.
......
...@@ -489,7 +489,7 @@ add_insn_allocno_copies (rtx insn) ...@@ -489,7 +489,7 @@ add_insn_allocno_copies (rtx insn)
? operand : SUBREG_REG (operand)) != NULL_RTX) ? operand : SUBREG_REG (operand)) != NULL_RTX)
{ {
str = recog_data.constraints[i]; str = recog_data.constraints[i];
while (*str == ' ' && *str == '\t') while (*str == ' ' || *str == '\t')
str++; str++;
bound_p = false; bound_p = false;
for (j = 0, commut_p = false; j < 2; j++, commut_p = true) for (j = 0, commut_p = false; j < 2; j++, commut_p = true)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment