diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-23 15:26:39 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-23 15:26:39 -0400 |
commit | 80d92002a7d963ebf02313c281f9e65c7c92abfa (patch) | |
tree | 96f1a96e762efe32971e89b6dda19c182977e448 | |
parent | 01c8a7c85882706bad219b424bab7fcf9ff3011c (diff) | |
download | gcc-80d92002a7d963ebf02313c281f9e65c7c92abfa.zip gcc-80d92002a7d963ebf02313c281f9e65c7c92abfa.tar.gz gcc-80d92002a7d963ebf02313c281f9e65c7c92abfa.tar.bz2 |
(emit_reload_insns): Declare and set this_reload_insn.
From-SVN: r12778
-rw-r--r-- | gcc/reload1.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index ccc3b9c..a11053f 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -5713,6 +5713,7 @@ emit_reload_insns (insn) { register rtx old; rtx oldequiv_reg = 0; + rtx this_reload_insn = 0; if (reload_spill_index[j] >= 0) new_spill_reg_store[reload_spill_index[j]] = 0; @@ -6135,6 +6136,7 @@ emit_reload_insns (insn) #endif } + this_reload_insn = get_last_insn (); /* End this sequence. */ *where = get_insns (); end_sequence (); |