diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-10-12 16:49:35 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-10-12 16:49:35 -0400 |
commit | af04ba4a01114617761ce7a8662a1162ae4046e9 (patch) | |
tree | 3f589cd963c55b167e6db32781ed89d850fb3b99 /gcc | |
parent | 40f1c86ccabe8abfca33d8b86bce6a793d9ff025 (diff) | |
download | gcc-af04ba4a01114617761ce7a8662a1162ae4046e9.zip gcc-af04ba4a01114617761ce7a8662a1162ae4046e9.tar.gz gcc-af04ba4a01114617761ce7a8662a1162ae4046e9.tar.bz2 |
(reload): Fix typo in RELOAD_FOR_INSN case when accounting for
reloads.
From-SVN: r5754
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/reload1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 72ec234..19c1479 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -1138,7 +1138,7 @@ reload (first, global, dumpfile) case RELOAD_FOR_INSN: this_needs = insn_needs_for_insn; - this_groups = insn_groups_for_outputs; + this_groups = insn_groups_for_insn; this_total_groups = &insn_total_groups_for_insn; break; |