mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-27 13:54:19 +08:00
function.c (purge_addressof): Use free_INSN_LIST_node instead of free_EXPR_LIST_node.
* function.c (purge_addressof): Use free_INSN_LIST_node instead of free_EXPR_LIST_node. From-SVN: r65396
This commit is contained in:
parent
5f7505af23
commit
22659ac994
@ -1,3 +1,8 @@
|
|||||||
|
2003-04-09 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
|
||||||
|
|
||||||
|
* function.c (purge_addressof): Use free_INSN_LIST_node instead of
|
||||||
|
free_EXPR_LIST_node.
|
||||||
|
|
||||||
2003-04-08 Roger Sayle <roger@eyesopen.com>
|
2003-04-08 Roger Sayle <roger@eyesopen.com>
|
||||||
|
|
||||||
* fold-const.c (fold): Use "fold" following build in more places.
|
* fold-const.c (fold): Use "fold" following build in more places.
|
||||||
|
@ -3455,7 +3455,7 @@ purge_addressof (insns)
|
|||||||
insn = XEXP (postponed_insns, 0);
|
insn = XEXP (postponed_insns, 0);
|
||||||
tmp = postponed_insns;
|
tmp = postponed_insns;
|
||||||
postponed_insns = XEXP (postponed_insns, 1);
|
postponed_insns = XEXP (postponed_insns, 1);
|
||||||
free_EXPR_LIST_node (tmp);
|
free_INSN_LIST_node (tmp);
|
||||||
|
|
||||||
if (! purge_addressof_1 (&PATTERN (insn), insn,
|
if (! purge_addressof_1 (&PATTERN (insn), insn,
|
||||||
asm_noperands (PATTERN (insn)) > 0, 0, 0, ht))
|
asm_noperands (PATTERN (insn)) > 0, 0, 0, ht))
|
||||||
|
Loading…
Reference in New Issue
Block a user