mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 22:15:12 +08: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:
@ -1,5 +1,10 @@
|
|||||||
Tue May 25 20:44:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
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
|
* source.c (line_info): If we don't find a symtab, print more useful
|
||||||
output, including the symbolic address.
|
output, including the symbolic address.
|
||||||
|
|
||||||
|
@ -309,7 +309,12 @@ print_formatted (val, format, size)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'i':
|
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)
|
next_address = VALUE_ADDRESS (val)
|
||||||
+ print_insn (VALUE_ADDRESS (val), stdout);
|
+ print_insn (VALUE_ADDRESS (val), stdout);
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user