summaryrefslogtreecommitdiff
path: root/gdb/printcmd.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2011-11-10 20:21:26 +0000
committerDoug Evans <dje@google.com>2011-11-10 20:21:26 +0000
commit19f173f49a22850c424736e95bc45f76d62aa3c0 (patch)
tree7690424d7777bada6b9e615d282e481463d1362c /gdb/printcmd.c
parentc810e2afe0d47098b9dad9203b6f68e719a2e360 (diff)
downloadgdb-19f173f49a22850c424736e95bc45f76d62aa3c0.tar.gz
* defs.h (is_cplus_marker, set_demangling_style): Moved to ...
* gdb-demangle.h: ... here. New file. * demangle.c: #include "gdb-demangle.h". (_initialize_demangler): Use initialize_file_ftype for prototype. Move "set demangle" and "set asm-demangle" parameters here from utils.c (demangle, show_demangle, asm_demangle, show_asm_demangle): Move here from utils.c * utils.c: Update. #include "gdb-demangle.h". * symtab.h (asm_demangle): Delete. (demangle): Move declaration next to use. * breakpoint.c: #include "gdb-demangle.h" instead of "demangle.h". * dwarf2read.c: #include "gdb-demangle.h". * gnu-v2-abi.c: Ditto. * jv-typeprint.c: Ditto. * mdebugread.c: Ditto. * p-typeprint.c: Ditto. * stabsread.c: Ditto. * printcmd.c: Ditto. (asm_demangle): Delete declaration. * tui/tui-stack.c: #include "gdb-demangle.h".
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r--gdb/printcmd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c
index ad6993e5ad0..5a522f42cbe 100644
--- a/gdb/printcmd.c
+++ b/gdb/printcmd.c
@@ -32,6 +32,7 @@
#include "target.h"
#include "breakpoint.h"
#include "demangle.h"
+#include "gdb-demangle.h"
#include "valprint.h"
#include "annotate.h"
#include "symfile.h" /* for overlay functions */
@@ -62,9 +63,6 @@
# define USE_PRINTF_I64 0
#endif
-extern int asm_demangle; /* Whether to demangle syms in asm
- printouts. */
-
struct format_data
{
int count;