diff options
author | Richard Henderson <rth@redhat.com> | 2001-12-06 21:57:28 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2001-12-06 21:57:28 +0000 |
commit | 2da4c07f1cfa10b4590491171f7eb73932ea3a59 (patch) | |
tree | 4c19ecee5b8a7e2b662c5a6ca13c6e9fbf3c67f0 /include/demangle.h | |
parent | ed1801dfff5252ea5cc2e7b53ccc3e1d76d35613 (diff) | |
download | gdb-2da4c07f1cfa10b4590491171f7eb73932ea3a59.zip gdb-2da4c07f1cfa10b4590491171f7eb73932ea3a59.tar.gz gdb-2da4c07f1cfa10b4590491171f7eb73932ea3a59.tar.bz2 |
* demangle.h (no_demangling): New.
(NO_DEMANGLING_STYLE_STRING): New.
* cplus-dem.c (libiberty_demanglers): Add no_demangling case.
(cplus_demangle): Support no_demangling.
Diffstat (limited to 'include/demangle.h')
-rw-r--r-- | include/demangle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/demangle.h b/include/demangle.h index a314a24..a898218 100644 --- a/include/demangle.h +++ b/include/demangle.h @@ -54,6 +54,7 @@ extern enum demangling_styles { + no_demangling = -1, unknown_demangling = 0, auto_demangling = DMGL_AUTO, gnu_demangling = DMGL_GNU, @@ -68,6 +69,7 @@ extern enum demangling_styles /* Define string names for the various demangling styles. */ +#define NO_DEMANGLING_STYLE_STRING "none" #define AUTO_DEMANGLING_STYLE_STRING "auto" #define GNU_DEMANGLING_STYLE_STRING "gnu" #define LUCID_DEMANGLING_STYLE_STRING "lucid" |