diff options
author | Christian Biesinger <cbiesinger@google.com> | 2019-11-21 13:02:07 -0600 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2019-11-21 16:36:00 -0600 |
commit | f10ffa4146416f1fb11ae1bc1a1c423d49e2dbf0 (patch) | |
tree | 067a4f1439920cbb1d3b19f1e31a22280a31769c /gdb/symtab.h | |
parent | 6ba185213659517b4299a3e4c92813839f19f045 (diff) | |
download | gdb-f10ffa4146416f1fb11ae1bc1a1c423d49e2dbf0.zip gdb-f10ffa4146416f1fb11ae1bc1a1c423d49e2dbf0.tar.gz gdb-f10ffa4146416f1fb11ae1bc1a1c423d49e2dbf0.tar.bz2 |
Rename demangle.c to gdb-demangle.c, and some cleanup
In addition to renaming demangle.c to match the header file naming,
this also makes is_cplus_marker return a bool and removes a duplicate
declaration of "bool demangle" from symtab.h.
gdb/ChangeLog:
2019-11-21 Christian Biesinger <cbiesinger@google.com>
* Makefile.in: Update.
* demangle.c: Rename to...
* gdb-demangle.c: ..this.
(is_cplus_marker): Change return type to bool.
(_initialize_demangler): Rename to...
(_initialize_gdb_demangle): ...this.
* gdb-demangle.h (is_cplus_marker): Change return type to bool.
* symtab.h (demangle): Remove declaration; instead include
gdb-demangle.h.
Change-Id: I83c3b3f7ee71b2bf6f5b5d0f9eb1d4b5208f2a97
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index 1e82182..8f95a3a 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -33,6 +33,7 @@ #include "gdbsupport/gdb_string_view.h" #include "gdbsupport/next-iterator.h" #include "completer.h" +#include "gdb-demangle.h" /* Opaque declarations. */ struct ui_file; @@ -553,7 +554,6 @@ extern const char *symbol_demangled_name #define SYMBOL_PRINT_NAME(symbol) \ (demangle ? SYMBOL_NATURAL_NAME (symbol) : SYMBOL_LINKAGE_NAME (symbol)) -extern bool demangle; /* Macro that returns the name to be used when sorting and searching symbols. In C++, we search for the demangled form of a name, |