diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2001-01-29 18:57:24 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-01-29 18:57:24 +0000 |
commit | 718b8ea51f0736646f9cf8a9d5eb4305a12e835e (patch) | |
tree | b48d73c0ebfe52de5ca1bb8398e3b4a0964d226a /gcc/objc | |
parent | adc881318b71864ad27821825c7cb9dce3c30aa2 (diff) | |
download | gcc-718b8ea51f0736646f9cf8a9d5eb4305a12e835e.zip gcc-718b8ea51f0736646f9cf8a9d5eb4305a12e835e.tar.gz gcc-718b8ea51f0736646f9cf8a9d5eb4305a12e835e.tar.bz2 |
tree.c, tree.h (build_parse_node): Remove; was identical to build_nt.
* tree.c, tree.h (build_parse_node): Remove; was identical to
build_nt.
* c-lang.c (start_cdtor), objc/objc-act.c
(build_module_descriptor): Use build_nt instead of
build_parse_node.
cp:
* decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
make_reference_declarator, make_call_declarator), method.c
(implicitly_declare_fn), parse.y (namespace_using_decl,
notype_unqualified_id, expr_or_declarator, new_type_id,
after_type_declarator, direct_after_type_declarator,
notype_declarator, complex_notype_declarator,
complex_direct_notype_declarator, qualified_id,
notype_qualified_id, overqualified_id, direct_new_declarator,
absdcl, direct_abstract_declarator, conversion_declarator), pt.c
(tsubst), semantics.c (begin_constructor_declarator): Use build_nt
instead of build_parse_node.
From-SVN: r39332
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 7c0941a..1cf0af9 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -1855,12 +1855,12 @@ build_module_descriptor () /* void _GLOBAL_$I$<gnyf> () {objc_execClass (&L_OBJC_MODULES);} */ start_function (void_list_node_1, - build_parse_node (CALL_EXPR, init_function_name, - /* This has the format of the output - of get_parm_info. */ - tree_cons (NULL_TREE, NULL_TREE, - void_list_node_1), - NULL_TREE), + build_nt (CALL_EXPR, init_function_name, + /* This has the format of the output + of get_parm_info. */ + tree_cons (NULL_TREE, NULL_TREE, + void_list_node_1), + NULL_TREE), NULL_TREE, NULL_TREE); #if 0 /* This should be turned back on later for the systems where collect is not needed. */ |