Commit e00c1338 by Richard Henderson Committed by Richard Henderson

* integrate.c (copy_insn_list): Substitute NOTE_EXPECTED_VALUE.

From-SVN: r41868
parent 45053eaf
2001-05-05 Richard Henderson <rth@redhat.com> 2001-05-05 Richard Henderson <rth@redhat.com>
* integrate.c (copy_insn_list): Substitute NOTE_EXPECTED_VALUE.
2001-05-05 Richard Henderson <rth@redhat.com>
* except.c (remove_fixup_regions): Adjust REG_EH_REGION notes * except.c (remove_fixup_regions): Adjust REG_EH_REGION notes
to the parent of the fixup region. to the parent of the fixup region.
......
...@@ -1536,6 +1536,11 @@ copy_insn_list (insns, map, static_chain_value) ...@@ -1536,6 +1536,11 @@ copy_insn_list (insns, map, static_chain_value)
else else
NOTE_BLOCK (copy) = *mapped_block_p; NOTE_BLOCK (copy) = *mapped_block_p;
} }
else if (copy
&& NOTE_LINE_NUMBER (copy) == NOTE_INSN_EXPECTED_VALUE)
NOTE_EXPECTED_VALUE (copy)
= copy_rtx_and_substitute (NOTE_EXPECTED_VALUE (insn),
map, 0);
} }
else else
copy = 0; copy = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment