* reg-stack.c (convert_regs_2): Free stack.

From-SVN: r92049
This commit is contained in:
Kazu Hirata 2004-12-12 15:59:31 +00:00
parent d16464bb8b
commit 3d5eef4c94
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,8 @@
2004-12-13 Daniel Berlin <dberlin@dberlin.org>
2004-12-12 Kazu Hirata <kazu@cs.umass.edu>
* reg-stack.c (convert_regs_2): Free stack.
2004-12-12 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-loop-ch.c (copy_loop_headers): Loop can be null.
* tree-ssa-loop-im.c (determine_lsm): tree_root may not have a real

View File

@ -3036,6 +3036,8 @@ convert_regs_2 (FILE *file, basic_block block)
}
while (sp != stack);
free (stack);
return inserted;
}