aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-lang.c
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-29 18:57:24 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-29 18:57:24 +0000
commit64ffa1a5cc52694b1a69127abebf329341631758 (patch)
treeb48d73c0ebfe52de5ca1bb8398e3b4a0964d226a /gcc/c-lang.c
parent8f381833d4d7f3660dee632a2a28388e5a4d121f (diff)
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39332 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r--gcc/c-lang.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c
index dfd772fdbf5..87c65fbacae 100644
--- a/gcc/c-lang.c
+++ b/gcc/c-lang.c
@@ -187,10 +187,9 @@ start_cdtor (method_type)
tree body;
start_function (void_list_node_1,
- build_parse_node (CALL_EXPR, fnname,
- tree_cons (NULL_TREE, NULL_TREE,
- void_list_node_1),
- NULL_TREE),
+ build_nt (CALL_EXPR, fnname,
+ tree_cons (NULL_TREE, NULL_TREE, void_list_node_1),
+ NULL_TREE),
NULL_TREE, NULL_TREE);
store_parm_decls ();