diff options
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r-- | gdb/printcmd.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c index 3c7ad41..1cea480 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -44,6 +44,10 @@ #include "block.h" #include "disasm.h" +#ifdef TUI +#include "tui/tui.h" /* For tui_active et.al. */ +#endif + extern int asm_demangle; /* Whether to demangle syms in asm printouts */ extern int addressprint; /* Whether to print hex addresses in HLL " */ @@ -1141,7 +1145,12 @@ address_info (char *exp, int from_tty) case LOC_COMPUTED: case LOC_COMPUTED_ARG: - (SYMBOL_LOCATION_FUNCS (sym)->describe_location) (sym, gdb_stdout); + /* FIXME: cagney/2004-01-26: It should be possible to + unconditionally call the SYMBOL_OPS method when available. + Unfortunately DWARF 2 stores the frame-base (instead of the + function) location in a function's symbol. Oops! For the + moment enable this when/where applicable. */ + SYMBOL_OPS (sym)->describe_location (sym, gdb_stdout); break; case LOC_REGISTER: @@ -1356,7 +1365,7 @@ display_command (char *exp, int from_tty) /* NOTE: cagney/2003-02-13 The `tui_active' was previously `tui_version'. */ if (tui_active && *exp == '$') - display_it = (tui_set_layout (exp) == TUI_FAILURE); + display_it = (tui_set_layout_for_display_command (exp) == TUI_FAILURE); #endif if (display_it) |