mirror of git://gcc.gnu.org/git/gcc.git
regmove.c (combine_stack_adjustments_for_block): Free memlist if it hasn't been freed.
* regmove.c (combine_stack_adjustments_for_block): Free memlist if it hasn't been freed. From-SVN: r92008
This commit is contained in:
parent
22a0b85fcc
commit
da0e2953e4
|
@ -1,3 +1,8 @@
|
||||||
|
2004-12-10 Kazu Hirata <kazu@cs.umass.edu>
|
||||||
|
|
||||||
|
* regmove.c (combine_stack_adjustments_for_block): Free
|
||||||
|
memlist if it hasn't been freed.
|
||||||
|
|
||||||
2004-12-10 Ziemowit Laski <zlaski@apple.com>
|
2004-12-10 Ziemowit Laski <zlaski@apple.com>
|
||||||
|
|
||||||
* c-typeck.c (lookup_field): Check if a TYPE_LANG_SPECIFIC
|
* c-typeck.c (lookup_field): Check if a TYPE_LANG_SPECIFIC
|
||||||
|
|
|
@ -2457,4 +2457,7 @@ combine_stack_adjustments_for_block (basic_block bb)
|
||||||
|
|
||||||
if (last_sp_set && last_sp_adjust == 0)
|
if (last_sp_set && last_sp_adjust == 0)
|
||||||
delete_insn (last_sp_set);
|
delete_insn (last_sp_set);
|
||||||
|
|
||||||
|
if (memlist)
|
||||||
|
free_csa_memlist (memlist);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue