diff options
Diffstat (limited to 'gcc/config/pa/pa.c')
-rw-r--r-- | gcc/config/pa/pa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 871e4e5c6e8..95dcbb917cf 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -668,7 +668,7 @@ pa_expand_builtin (tree exp, rtx target, rtx subtarget ATTRIBUTE_UNUSED, static struct machine_function * pa_init_machine_status (void) { - return ggc_alloc_cleared_machine_function (); + return ggc_cleared_alloc<machine_function> (); } /* If FROM is a probable pointer register, mark TO as a probable @@ -5583,7 +5583,7 @@ pa_get_deferred_plabel (rtx symbol) tree id; if (deferred_plabels == 0) - deferred_plabels = ggc_alloc_deferred_plabel (); + deferred_plabels = ggc_alloc<deferred_plabel> (); else deferred_plabels = GGC_RESIZEVEC (struct deferred_plabel, deferred_plabels, |