mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
* printcmd.c (print_formatted, case 'i'): Pass a tab to wrap_here.
* source.c (line_info): Change "pc" to "address" in messages and use print_address for addresses.
This commit is contained in:
parent
2f2a70e585
commit
43795ece80
@ -1,5 +1,10 @@
|
||||
Tue May 25 20:44:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
* printcmd.c (print_formatted, case 'i'): Pass a tab to wrap_here.
|
||||
|
||||
* source.c (line_info): Change "pc" to "address" in messages and
|
||||
use print_address for addresses.
|
||||
|
||||
* source.c (line_info): If we don't find a symtab, print more useful
|
||||
output, including the symbolic address.
|
||||
|
||||
|
@ -309,7 +309,12 @@ print_formatted (val, format, size)
|
||||
break;
|
||||
|
||||
case 'i':
|
||||
wrap_here (""); /* Force output out, print_insn not using _filtered */
|
||||
/* The old comment says
|
||||
"Force output out, print_insn not using _filtered".
|
||||
I'm not completely sure what that means, I suspect most print_insn
|
||||
now do use _filtered, so I guess it's obsolete. */
|
||||
/* We often wrap here if there are long symbolic names. */
|
||||
wrap_here ("\t");
|
||||
next_address = VALUE_ADDRESS (val)
|
||||
+ print_insn (VALUE_ADDRESS (val), stdout);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user