aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/cp-objcp-common.c
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@integrable-solutions.net>2005-12-02 11:21:28 +0000
committerGabriel Dos Reis <gdr@gcc.gnu.org>2005-12-02 11:21:28 +0000
commit0ac1b88953853f4ae1cd2fd09d40fb85fe0d3de5 (patch)
tree02a2773c1a28cc03c9c2382a37b5628b733a02d8 /gcc/cp/cp-objcp-common.c
parent20186b381aae5e99159239091457eac4ca66a5c8 (diff)
downloadgcc-0ac1b88953853f4ae1cd2fd09d40fb85fe0d3de5.zip
gcc-0ac1b88953853f4ae1cd2fd09d40fb85fe0d3de5.tar.gz
gcc-0ac1b88953853f4ae1cd2fd09d40fb85fe0d3de5.tar.bz2
decl2.c (get_priority_info): Use XNEW, not xmalloc.
* decl2.c (get_priority_info): Use XNEW, not xmalloc. * decl.c (push_switch): Likewise. * lex.c (handle_pragma_implementation): Likewise. * cp-objcp-common.c (decl_shadowed_for_var_insert): Use GGC_NEW, not ggc_alloc. (cxx_initialize_diagnostics): Use XNEW, not xmalloc. * class.c (init_class_processing): Use XNEWVEC, not xmalloc. * g++spec.c (lang_specific_driver): Likewise. * mangle.c (save_partially_mangled_name): Likewise. * parser.c (cp_lexer_new_main): Use GGC_NEWVEC, not ggc_alloc. (cp_parser_template_argument_list): Use XNEWVEC, nto xmalloc. (cp_parser_sizeof_operand): Likewise. * repo.c (open_repo_file, open_repo_file): Likewise. From-SVN: r107884
Diffstat (limited to 'gcc/cp/cp-objcp-common.c')
-rw-r--r--gcc/cp/cp-objcp-common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/cp-objcp-common.c b/gcc/cp/cp-objcp-common.c
index 43a7576..7a4d862 100644
--- a/gcc/cp/cp-objcp-common.c
+++ b/gcc/cp/cp-objcp-common.c
@@ -154,7 +154,7 @@ void
cxx_initialize_diagnostics (diagnostic_context *context)
{
pretty_printer *base = context->printer;
- cxx_pretty_printer *pp = xmalloc (sizeof (cxx_pretty_printer));
+ cxx_pretty_printer *pp = XNEW (cxx_pretty_printer);
memcpy (pp_base (pp), base, sizeof (pretty_printer));
pp_cxx_pretty_printer_init (pp);
context->printer = (pretty_printer *) pp;
@@ -229,7 +229,7 @@ decl_shadowed_for_var_insert (tree from, tree to)
struct tree_map *h;
void **loc;
- h = ggc_alloc (sizeof (struct tree_map));
+ h = GGC_NEW (struct tree_map);
h->hash = htab_hash_pointer (from);
h->from = from;
h->to = to;