diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-09 16:58:14 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-09 16:58:14 +0000 |
commit | b305db716c21843598b29d725519b98d1bcadc44 (patch) | |
tree | 9216916b09b801044a071b57653201628d5550ae /gcc | |
parent | ecd99204645c60cd3b2abf826552d273cd850dcf (diff) | |
download | gcc-b305db716c21843598b29d725519b98d1bcadc44.zip gcc-b305db716c21843598b29d725519b98d1bcadc44.tar.gz gcc-b305db716c21843598b29d725519b98d1bcadc44.tar.bz2 |
* cp-tree.h (VF_BINFO_VALUE, VF_BASETYPE_VALUE): Remove.
From-SVN: r97911
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 11 |
2 files changed, 2 insertions, 11 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 10ef198..14c528e 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -9,6 +9,8 @@ * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Remove. + * cp-tree.h (VF_BINFO_VALUE, VF_BASETYPE_VALUE): Remove. + 2005-04-08 Ian Lance Taylor <ian@airs.com> * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT, diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index fdbfea5..55efac2 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -1455,17 +1455,6 @@ struct lang_type GTY(()) #define CLASSTYPE_TYPEINFO_VAR(NODE) \ (LANG_TYPE_CLASS_CHECK (NODE)->typeinfo_var) -/* Accessor macros for the vfield slots in structures. */ - -/* Get the BINFO that introduced this vtable into the hierarchy (will - be NULL for those created at this level, or from a primary - hierarchy). */ -#define VF_BINFO_VALUE(NODE) TREE_PURPOSE (NODE) - -/* Get the TYPE that introduced this vtable into the hierarchy (always - non-NULL). */ -#define VF_BASETYPE_VALUE(NODE) TREE_VALUE (NODE) - /* Accessor macros for the BINFO_VIRTUALS list. */ /* The number of bytes by which to adjust the `this' pointer when |