https://sourceware.org/bugzilla/show_bug.cgi?id=30953
Nick Clifton <nickc at redhat dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |NOTABUG
CC| |nickc at redhat dot com
Status|NEW |RESOLVED
--- Comment #1 from Nick Clifton <nickc at redhat dot com> ---
Hi Guinevere,
> 40110a: c5 f9 6e 05 0a 2f 00 vmovd 0x2f0a(%rip),%xmm0 #
> 40401c <global>
> 401111: 00
> notice how byte 401111 is a single null byte. That byte is part of the 32
> bit displacement for the vmovd instruction, and should be printed in the
> same line.
AH - you have run into the 'objdump defaults to 80 column maximum output width'
issue. Please try rerunning your disassembly with --wide (or just -w) added to
the command line:
$ objdump -d fred.o --wide
[...]
4: c5 f9 6e 05 00 00 00 00 vmovd 0x0(%rip),%xmm0 # c
<main+0xc>
c: b8 00 00 00 00 mov $0x0,%eax
[...]
Cheers
Nick
--
You are receiving this mail because:
You are on the CC list for the bug.