diff options
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index aade423eefe..a52f614b878 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -452,8 +452,8 @@ get_related_value (rtx x) rtx get_jump_table_offset (rtx insn, rtx *earliest) { - rtx label; - rtx table; + rtx label = NULL; + rtx table = NULL; rtx set; rtx old_insn; rtx x; @@ -3702,18 +3702,18 @@ hoist_insn_to_edge (rtx insn, edge e, rtx val, rtx new) abort (); /* Do not use emit_insn_on_edge as we want to preserve notes and similar - stuff. We also emit CALL_INSNS and friends. */ - if (e->insns == NULL_RTX) + stuff. We also emit CALL_INSNS and firends. */ + if (e->insns.r == NULL_RTX) { start_sequence (); emit_note (NOTE_INSN_DELETED); } else - push_to_sequence (e->insns); + push_to_sequence (e->insns.r); new_insn = hoist_insn_after (insn, get_last_insn (), val, new); - e->insns = get_insns (); + e->insns.r = get_insns (); end_sequence (); return new_insn; } |