summaryrefslogtreecommitdiff
path: root/gcc/cp/rtti.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-14 23:51:27 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-14 23:51:27 +0000
commit815e356d19d4b03add2b1d69756c1fff63ba59a9 (patch)
tree4193737aca409abec38db977a68ae2969614671a /gcc/cp/rtti.c
parentbfa8aef926596ada94fe375c9dc160f0e23f84cd (diff)
downloadgcc-815e356d19d4b03add2b1d69756c1fff63ba59a9.tar.gz
* class.c, cp-tree.h (build_vfn_ref): Remove.
* call.c, rtti.c: Replace all refernces with build_vtbl_ref. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44913 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/rtti.c')
-rw-r--r--gcc/cp/rtti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c
index f8c6031e45e..35da7374de8 100644
--- a/gcc/cp/rtti.c
+++ b/gcc/cp/rtti.c
@@ -182,7 +182,7 @@ get_tinfo_decl_dynamic (exp)
/* The RTTI information is at index -1. */
index = integer_minus_one_node;
- t = build_vfn_ref (exp, index);
+ t = build_vtbl_ref (exp, index);
TREE_TYPE (t) = build_pointer_type (tinfo_decl_type);
return t;
}