From 255cf280a5a72397ca69300cff2bfccc2f14be4a Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 30 Mar 1994 20:36:58 -0500 Subject: [PATCH] (reload): Fix typo in previous change. From-SVN: r6929 --- gcc/reload1.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/reload1.c b/gcc/reload1.c index 4e7a362ee4c8..85960c493ff4 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -1158,10 +1158,10 @@ reload (first, global, dumpfile) if (size == 1) for (j = 0; j < n_reloads; j++) if ((CLASS_MAX_NREGS (reload_reg_class[j], - (GET_MODE_SIZE (reload_outmode[i]) - > GET_MODE_SIZE (reload_inmode[i])) - ? reload_outmode[i] - : reload_inmode[i]) + (GET_MODE_SIZE (reload_outmode[j]) + > GET_MODE_SIZE (reload_inmode[j])) + ? reload_outmode[j] + : reload_inmode[j]) > 1) && reloads_conflict (i, j) && reg_classes_intersect_p (class, -- 2.47.2