Commit 22659ac9 by Zdenek Dvorak Committed by Zdenek Dvorak

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
parent 5f7505af
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>
* fold-const.c (fold): Use "fold" following build in more places.
......
......@@ -3455,7 +3455,7 @@ purge_addressof (insns)
insn = XEXP (postponed_insns, 0);
tmp = postponed_insns;
postponed_insns = XEXP (postponed_insns, 1);
free_EXPR_LIST_node (tmp);
free_INSN_LIST_node (tmp);
if (! purge_addressof_1 (&PATTERN (insn), insn,
asm_noperands (PATTERN (insn)) > 0, 0, 0, ht))
......
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