Bug 6569 - disassembler should display decimal, not hex, offsets from symbol
disassembler should display decimal, not hex, offsets from symbol
Status: NEW
Product: frysk
Classification: Unclassified
Component: general
unspecified
: P2 normal
: ---
Assigned To: Unassigned
:
Depends on:
Blocks: 6541
  Show dependency treegraph
 
Reported: 2008-05-27 15:56 UTC by Andrew Cagney
Modified: 2008-05-27 15:56 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Cagney 2008-05-27 15:56:08 UTC
The output looks like:

 0x8048410      <main+a>:       push    %ebp

but an attempt to use <main+a> in an expression will fail.  It should instead
display decimal offsets vis:

 0x8048410      <main+10>:       push    %ebp

the alternative, to add hex prefixes would burn additional real estate :-(

 0x8048410      <main+0xA>:       push    %ebp