From 4b0c3b9358fff3b1bcbdf08c318dda43d4cf2510 Mon Sep 17 00:00:00 2001 From: manu Date: Fri, 15 May 2009 20:05:36 +0000 Subject: =?UTF-8?q?2009-05-15=20=20Manuel=20L=C3=B3pez-Ib=C3=A1=C3=B1ez=20?= =?UTF-8?q?=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ira-conflicts.c (add_insn_allocno_copies): Fix wrong conditional. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147595 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ira-conflicts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/ira-conflicts.c') 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) -- cgit v1.2.1