diff options
author | Christian Biesinger <cbiesinger@google.com> | 2019-10-07 13:23:34 -0500 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2019-10-07 17:30:22 -0500 |
commit | bad5c02618a27f8f1c5c0858c323dba060aed905 (patch) | |
tree | 205bfb022d809d23f7134d6221f5852a42ef05d4 /gdb/stabsread.c | |
parent | 51f1fdc3d2235ffe94172b51d33fec0e5c5edeca (diff) | |
download | gdb-bad5c02618a27f8f1c5c0858c323dba060aed905.zip gdb-bad5c02618a27f8f1c5c0858c323dba060aed905.tar.gz gdb-bad5c02618a27f8f1c5c0858c323dba060aed905.tar.bz2 |
Move declaration of vtbl_ptr_name to the header.
There are conflicting comments about whether this was
introduced in GCC 2.4.5 or GCC 2.6 and I don't know
which one is correct...
gdb/ChangeLog:
2019-10-07 Christian Biesinger <cbiesinger@google.com>
* c-lang.h (vtbl_ptr_name): Declare.
* cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
it from the header.
* stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r-- | gdb/stabsread.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c index da455da..fa2521f 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -42,6 +42,7 @@ #include "gdb-demangle.h" #include "language.h" #include "target-float.h" +#include "c-lang.h" #include "cp-abi.h" #include "cp-support.h" #include <ctype.h> @@ -1259,11 +1260,6 @@ define_symbol (CORE_ADDR valu, const char *string, int desc, int type, if (TYPE_NAME (SYMBOL_TYPE (sym)) == NULL) { - /* gcc-2.6 or later (when using -fvtable-thunks) - emits a unique named type for a vtable entry. - Some gdb code depends on that specific name. */ - extern const char vtbl_ptr_name[]; - if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR && strcmp (SYMBOL_LINKAGE_NAME (sym), vtbl_ptr_name)) || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FUNC) |