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:
Kazu Hirata 2004-12-10 21:11:02 +00:00 committed by Kazu Hirata
parent 22a0b85fcc
commit da0e2953e4
2 changed files with 8 additions and 0 deletions

View File

@ -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>
* c-typeck.c (lookup_field): Check if a TYPE_LANG_SPECIFIC

View File

@ -2457,4 +2457,7 @@ combine_stack_adjustments_for_block (basic_block bb)
if (last_sp_set && last_sp_adjust == 0)
delete_insn (last_sp_set);
if (memlist)
free_csa_memlist (memlist);
}