diff options
Diffstat (limited to 'gcc/lto-cgraph.c')
-rw-r--r-- | gcc/lto-cgraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lto-cgraph.c b/gcc/lto-cgraph.c index b22eb46..2329d1a 100644 --- a/gcc/lto-cgraph.c +++ b/gcc/lto-cgraph.c @@ -1756,7 +1756,7 @@ input_node_opt_summary (struct cgraph_node *node, count = streamer_read_uhwi (ib_main); for (i = 0; i < count; i++) { - struct ipa_replace_map *map = ggc_alloc_ipa_replace_map (); + struct ipa_replace_map *map = ggc_alloc<ipa_replace_map> (); vec_safe_push (node->clone.tree_map, map); map->parm_num = streamer_read_uhwi (ib_main); |