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 | 9acc7b9b3dfb682c3ea6ae3fae207eea5ba14931 (patch) | |
tree | 51671311ade5e95d9ff2eda25a137d08f015169f /include/demangle.h | |
parent | 355b664e8c464bf9137a596375231da7eaa2c03a (diff) | |
download | cygnal-9acc7b9b3dfb682c3ea6ae3fae207eea5ba14931.tar.gz cygnal-9acc7b9b3dfb682c3ea6ae3fae207eea5ba14931.tar.bz2 cygnal-9acc7b9b3dfb682c3ea6ae3fae207eea5ba14931.zip |
* 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 a314a2410..a898218f4 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" |