Commit 02ce8f4e by Geoff Keating Committed by Geoffrey Keating

flow.c (propagate_block): When we delete an ADDR_VEC, also delete the BARRIER…

flow.c (propagate_block): When we delete an ADDR_VEC, also delete the BARRIER following it if there is one.

* flow.c (propagate_block): When we delete an ADDR_VEC,
also delete the BARRIER following it if there is one.

From-SVN: r32733
parent 3477addf
2000-03-24 Geoff Keating <geoffk@cygnus.com>
* flow.c (propagate_block): When we delete an ADDR_VEC,
also delete the BARRIER following it if there is one.
2000-03-24 Richard Henderson <rth@cygnus.com>
* builtins.c (expand_builtin_bzero): Convert `length' argument
......
......@@ -3328,6 +3328,14 @@ propagate_block (bb, old, significant, flags)
PUT_CODE (next, NOTE);
NOTE_LINE_NUMBER (next) = NOTE_INSN_DELETED;
NOTE_SOURCE_FILE (next) = 0;
if ((next = next_nonnote_insn (label)) != NULL
&& GET_CODE (next) == BARRIER)
{
PUT_CODE (next, NOTE);
NOTE_LINE_NUMBER (next) = NOTE_INSN_DELETED;
NOTE_SOURCE_FILE (next) = 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