diff options
Diffstat (limited to 'gcc/ira-conflicts.c')
-rw-r--r-- | gcc/ira-conflicts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ira-conflicts.c b/gcc/ira-conflicts.c index 56be23b21f3..bc0c0ac11c8 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) |