Commit 2e106602 by Jan Hubicka Committed by Jan Hubicka

* final.c (final_scan_insn): Use delete_insn instead of delete_note.

From-SVN: r45823
parent fd2c57a9
Wed Sep 26 13:20:51 CEST 2001 Jan Hubicka <jh@suse.cz>
* final.c (final_scan_insn): Use delete_insn instead of delete_note.
2001-09-25 Andrew Haley <aph@cambridge.redhat.com>
* except.c (sjlj_mark_call_sites): Change address inside sequence.
......
......@@ -1972,7 +1972,7 @@ final (first, file, optimize, prescan)
&& NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last)
&& NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last)))
{
delete_note (insn);
delete_insn (insn); /* Use delete_note. */
continue;
}
last = insn;
......
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