https://sourceware.org/bugzilla/show_bug.cgi?id=32211
H.J. Lu <hjl.tools at gmail dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hjl.tools at gmail dot com Status|UNCONFIRMED |WAITING Ever confirmed|0 |1 Last reconfirmed| |2024-09-25 --- Comment #2 from H.J. Lu <hjl.tools at gmail dot com> --- "objdump -z" works for me on Linux/x86: [hjl@gnu-tgl-3 tmp]$ cat x.s .text foo: .zero 10 mov %eax, %ebx [hjl@gnu-tgl-3 tmp]$ gcc -c x.s [hjl@gnu-tgl-3 tmp]$ objdump -dw x.o x.o: file format elf64-x86-64 Disassembly of section .text: 0000000000000000 <foo>: ... 8: 00 00 add %al,(%rax) a: 89 c3 mov %eax,%ebx [hjl@gnu-tgl-3 tmp]$ objdump -z -dw x.o x.o: file format elf64-x86-64 Disassembly of section .text: 0000000000000000 <foo>: 0: 00 00 add %al,(%rax) 2: 00 00 add %al,(%rax) 4: 00 00 add %al,(%rax) 6: 00 00 add %al,(%rax) 8: 00 00 add %al,(%rax) a: 89 c3 mov %eax,%ebx [hjl@gnu-tgl-3 tmp]$ -- You are receiving this mail because: You are on the CC list for the bug.