https://sourceware.org/bugzilla/show_bug.cgi?id=33077
Bug ID: 33077 Summary: hexadecimal representation of instruction is wrong on aarch64 Product: binutils Version: 2.45 (HEAD) Status: NEW Severity: normal Priority: P2 Component: gprofng Assignee: vladimir.mezentsev at oracle dot com Reporter: vladimir.mezentsev at oracle dot com Target Milestone: --- The output of `gprofng display src -dcc h -dis main a.out` on aarc64: <Function: main> [ 7] 400604: fd 7b bf a9 stp x29, x30, [sp, #-16]! [ 7] 400608: fd 03 00 91 mov x29, sp "fd 7b bf a9" is confusing. We need to change this to objdump format: 0000000000400604 <main>: 400604: a9bf7bfd stp x29, x30, [sp, #-16]! 400608: 910003fd mov x29, sp -- You are receiving this mail because: You are on the CC list for the bug.