diff options
author | Mike Stump <mrs@cygnus.com> | 1995-06-08 19:06:37 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-08 19:06:37 -0400 |
commit | b3417a046428f30f5e9be25bb24b03334a1f556b (patch) | |
tree | eb3ae4e5df6ce460174fc969c3df07360a035155 /gcc/cp/class.c | |
parent | ee760f3f6b98a9af36685df41554c02d716c04ca (diff) | |
download | gcc-b3417a046428f30f5e9be25bb24b03334a1f556b.zip gcc-b3417a046428f30f5e9be25bb24b03334a1f556b.tar.gz gcc-b3417a046428f30f5e9be25bb24b03334a1f556b.tar.bz2 |
Change all callers of finish_decl to cp_finish_decl.
From-SVN: r9907
Diffstat (limited to 'gcc/cp/class.c')
-rw-r--r-- | gcc/cp/class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/class.c b/gcc/cp/class.c index a1a1fa8..b1c6812 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -2102,7 +2102,7 @@ finish_vtbls (binfo, do_self, t) && DECL_INITIAL (decl) != BINFO_VIRTUALS (binfo)) DECL_INITIAL (decl) = build_nt (CONSTRUCTOR, NULL_TREE, BINFO_VIRTUALS (binfo)); - finish_decl (decl, DECL_INITIAL (decl), NULL_TREE, 0, 0); + cp_finish_decl (decl, DECL_INITIAL (decl), NULL_TREE, 0, 0); DECL_CONTEXT (decl) = context; } CLEAR_BINFO_NEW_VTABLE_MARKED (binfo); |