Sources Bugzilla – Bug 6569
disassembler should display decimal, not hex, offsets from symbol
Last modified: 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