diff options
author | Fred Fish <fnf@specifix.com> | 1992-07-15 19:33:21 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-07-15 19:33:21 +0000 |
commit | d23639b2ecdb98b13403d39be6883433da7176f8 (patch) | |
tree | 0cefd6732af18e29207ee4373eae63056be340c5 /gdb/dwarfread.c | |
parent | 781fa085cb64d26eed91c008408d823ed7557409 (diff) | |
download | gdb-d23639b2ecdb98b13403d39be6883433da7176f8.zip gdb-d23639b2ecdb98b13403d39be6883433da7176f8.tar.gz gdb-d23639b2ecdb98b13403d39be6883433da7176f8.tar.bz2 |
* dbxread.c, dwarfread.c: Re-enable experimental code to
automatically select demangling style.
* demangle.c (DEFAULT_DEMANGLING_STYLE): Rename from simply
DEMANGLING_STYLE, to make more descriptive. Revert back to
"auto" as default. Comment use.
* Makefile.in (DEMANGLING_STYLE, DEMANGLE_OPTS): Remove.
* Makefile.in (${DEMANGLER}.o) Remove target and special
compilation rule.
Diffstat (limited to 'gdb/dwarfread.c')
-rw-r--r-- | gdb/dwarfread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarfread.c b/gdb/dwarfread.c index 6ba1e77..6d4cc19 100644 --- a/gdb/dwarfread.c +++ b/gdb/dwarfread.c @@ -1577,7 +1577,7 @@ handle_producer (producer) is not auto. We also leave the demangling style alone if we find a gcc (cc1) producer, as opposed to a g++ (cc1plus) producer. */ -#if 0 /* Works, but is disabled for now. -fnf */ +#if 1 /* Works, but is experimental. -fnf */ if (current_demangling_style == auto_demangling) { if (STREQN (producer, GPLUS_PRODUCER, strlen (GPLUS_PRODUCER))) |