From ca1a4af124196cef0751c8c8f504a45ecda9371f Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Mon, 29 Nov 1999 11:51:16 +0000 Subject: Fix bug in reloads_conflict From-SVN: r30701 --- gcc/reload1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/reload1.c') diff --git a/gcc/reload1.c b/gcc/reload1.c index 09044c9..ac00812 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -5232,7 +5232,7 @@ reloads_conflict (r1, r2) return (r2_type == RELOAD_FOR_INSN || r2_type == RELOAD_FOR_OUTPUT || ((r2_type == RELOAD_FOR_OUTPUT_ADDRESS || r2_type == RELOAD_FOR_OUTADDR_ADDRESS) - && r2_opnum >= r1_opnum)); + && r2_opnum <= r1_opnum)); case RELOAD_FOR_INSN: return (r2_type == RELOAD_FOR_INPUT || r2_type == RELOAD_FOR_OUTPUT -- cgit v1.1