flow.c (flow_delete_insn): Use INSN_DELETED_P for marking insn as deleted.
* flow.c (flow_delete_insn): Use INSN_DELETED_P for marking insn as deleted. From-SVN: r33803
This commit is contained in:
parent
3454eb731b
commit
aa9e158d7a
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue May 9 22:28:03 2000 Denis Chertykov <denisc@overta.ru>
|
||||
|
||||
* flow.c (flow_delete_insn): Use INSN_DELETED_P for marking insn
|
||||
as deleted.
|
||||
|
||||
Tue May 9 20:52:43 2000 Denis Chertykov <denisc@overta.ru>
|
||||
|
||||
* config/avr/avr-protos.h (extra_constraint): change a type of
|
||||
|
|
|
@ -2004,7 +2004,8 @@ flow_delete_insn (insn)
|
|||
|
||||
PREV_INSN (insn) = NULL_RTX;
|
||||
NEXT_INSN (insn) = NULL_RTX;
|
||||
|
||||
INSN_DELETED_P (insn) = 1;
|
||||
|
||||
if (prev)
|
||||
NEXT_INSN (prev) = next;
|
||||
if (next)
|
||||
|
|
Loading…
Add table
Reference in a new issue