diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2001-10-16 21:19:34 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2001-10-16 21:19:34 +0000 |
commit | dc8ad2989f80407b2ef1521756291a409079d615 (patch) | |
tree | 8bd2b28be05e6b93f2efa28817eb966745417a1c /gcc | |
parent | e95301f52eb934f46acd8beb54a0b5ddd6c2d07b (diff) | |
download | gcc-dc8ad2989f80407b2ef1521756291a409079d615.zip gcc-dc8ad2989f80407b2ef1521756291a409079d615.tar.gz gcc-dc8ad2989f80407b2ef1521756291a409079d615.tar.bz2 |
cp-tree.h (VFIELD_NAME_FORMAT): Adjust to match VFIELD_NAME.
* cp-tree.h (VFIELD_NAME_FORMAT) [NO_DOLLAR_IN_LABEL &&
NO_DOT_IN_LABEL]: Adjust to match VFIELD_NAME.
From-SVN: r46293
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1cb628d..42609eb 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2001-10-16 Hans-Peter Nilsson <hp@axis.com> + + * cp-tree.h (VFIELD_NAME_FORMAT) [NO_DOLLAR_IN_LABEL && + NO_DOT_IN_LABEL]: Adjust to match VFIELD_NAME. + 2001-10-15 Richard Sandiford <rsandifo@redhat.com> * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Define. diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 34ef95a..e65a4de 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3167,7 +3167,7 @@ extern varray_type local_classes; #define VFIELD_NAME_P(ID_NODE) \ (!strncmp (IDENTIFIER_POINTER (ID_NODE), VFIELD_NAME, \ sizeof (VFIELD_NAME) - 1)) -#define VFIELD_NAME_FORMAT "_vptr_%s" +#define VFIELD_NAME_FORMAT "__vptr_%s" #define STATIC_NAME_FORMAT "__static_%s_%s" #define ANON_AGGRNAME_PREFIX "__anon_" |