diff options
Diffstat (limited to 'gcc/config/darwin.c')
-rw-r--r-- | gcc/config/darwin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 3c50e24..462c81d 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -561,7 +561,7 @@ machopic_indirection_name (rtx sym_ref, bool stub_p) } else { - p = ggc_alloc_machopic_indirection (); + p = ggc_alloc<machopic_indirection> (); p->symbol = sym_ref; p->ptr_name = xstrdup (buffer); p->stub_p = stub_p; @@ -3499,7 +3499,7 @@ darwin_build_constant_cfstring (tree str) } } - *loc = desc = ggc_alloc_cleared_cfstring_descriptor (); + *loc = desc = ggc_cleared_alloc<cfstring_descriptor> (); desc->literal = str; /* isa *. */ @@ -3586,7 +3586,7 @@ darwin_enter_string_into_cfstring_table (tree str) if (!*loc) { - *loc = ggc_alloc_cleared_cfstring_descriptor (); + *loc = ggc_cleared_alloc<cfstring_descriptor> (); ((struct cfstring_descriptor *)*loc)->literal = str; } } |