diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-09 06:17:13 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-09 06:17:13 +0000 |
commit | e1b3e07d15a82f07afc3ebd6ecf4ee0334a90d65 (patch) | |
tree | 5953ca2b981b4fba376c0372f43a13e5ce7fa27d /gcc/cp/repo.c | |
parent | fc009f966c98317401b51127f59de4ad37bb7d19 (diff) | |
download | gcc-e1b3e07d15a82f07afc3ebd6ecf4ee0334a90d65.zip gcc-e1b3e07d15a82f07afc3ebd6ecf4ee0334a90d65.tar.gz gcc-e1b3e07d15a82f07afc3ebd6ecf4ee0334a90d65.tar.bz2 |
cp-tree.h (scratch_tree_cons): Remove.
* cp-tree.h (scratch_tree_cons): Remove.
* call.c: Replace all uses of expr_tree_cons, saveable_tree_cons,
and perm_tree_cons with plain tree_cons.
* class.c: Likewise.
* decl.c: Likewise.
* decl2.c: Likewise.
* except.c: Likewise.
* expr.c: Likewise.
* init.c: Likewise.
* lex.c: Likewise.
* method.c: Likewise.
* parse.y: Likewise.
* pt.c: Likewise.
* repo.c: Likewise.
* rtti.c: Likewise.
* search.c: Likewise.
* typeck.c: Likewise.
* parse.c: Regenerated.
* tree.c (build_srcloc): Simplify.
From-SVN: r29225
Diffstat (limited to 'gcc/cp/repo.c')
-rw-r--r-- | gcc/cp/repo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cp/repo.c b/gcc/cp/repo.c index 4adcc35..fdeefb1 100644 --- a/gcc/cp/repo.c +++ b/gcc/cp/repo.c @@ -142,7 +142,7 @@ repo_template_used (t) if (! IDENTIFIER_REPO_USED (id)) { IDENTIFIER_REPO_USED (id) = 1; - pending_repo = perm_tree_cons (NULL_TREE, id, pending_repo); + pending_repo = tree_cons (NULL_TREE, id, pending_repo); } } @@ -156,7 +156,7 @@ repo_vtable_used (t) if (! flag_use_repository) return; - pending_repo = perm_tree_cons (NULL_TREE, t, pending_repo); + pending_repo = tree_cons (NULL_TREE, t, pending_repo); } /* Note that an inline with external linkage has been used, and offer to @@ -176,7 +176,7 @@ repo_inline_used (fn) return; } - pending_repo = perm_tree_cons (NULL_TREE, fn, pending_repo); + pending_repo = tree_cons (NULL_TREE, fn, pending_repo); } /* Note that a particular typeinfo node has been used, and offer to @@ -347,7 +347,7 @@ init_repo (filename) else orig = NULL_TREE; - original_repo = perm_tree_cons (orig, id, original_repo); + original_repo = tree_cons (orig, id, original_repo); } break; default: |