mirror of git://gcc.gnu.org/git/gcc.git
ipa-inline-analysis.c (inline_merge_summary): Free operand_map.
2012-05-23 Martin Jambor <mjambor@suse.cz> * ipa-inline-analysis.c (inline_merge_summary): Free operand_map. From-SVN: r187817
This commit is contained in:
parent
239b48db1b
commit
fb9098887b
|
@ -1,3 +1,7 @@
|
|||
2012-05-23 Martin Jambor <mjambor@suse.cz>
|
||||
|
||||
* ipa-inline-analysis.c (inline_merge_summary): Free operand_map.
|
||||
|
||||
2012-05-23 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* gimple.c (gimple_types_compatible_p_1) <ARRAY_TYPE>: Remove bogus
|
||||
|
|
|
@ -2696,6 +2696,7 @@ inline_merge_summary (struct cgraph_edge *edge)
|
|||
edge_set_predicate (edge, &true_p);
|
||||
/* Similarly remove param summaries. */
|
||||
VEC_free (inline_param_summary_t, heap, es->param);
|
||||
VEC_free (int, heap, operand_map);
|
||||
|
||||
info->time = (info->time + INLINE_TIME_SCALE / 2) / INLINE_TIME_SCALE;
|
||||
info->size = (info->size + INLINE_SIZE_SCALE / 2) / INLINE_SIZE_SCALE;
|
||||
|
|
Loading…
Reference in New Issue