We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Found this while working on another thing.
reproducer: retl popc %g0, %g0 ! a V9 instruction
Assembles successfully with e.g. clang -target sparc -mcpu=v9 -c reproducer.s, but llvm-objdump doesn't recognize the popc:
clang -target sparc -mcpu=v9 -c reproducer.s
llvm-objdump
popc
$ llvm-objdump -d reproducer.o reproducer.o: file format elf32-sparc Disassembly of section .text: 00000000 <reproducer>: 0: 81 c3 e0 08 retl 4: 81 70 00 00 <unknown>
As a comparison, GNU objdump does recognize the instruction.
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-tools-llvm-objdump
Author: Koakuma (koachan)
$ llvm-objdump -d reproducer.o reproducer.o: file format elf32-sparc Disassembly of section .text: 00000000 <reproducer>: 0: 81 c3 e0 08 retl 4: 81 70 00 00 <unknown>
Sorry, something went wrong.
koachan
No branches or pull requests
Found this while working on another thing.
Assembles successfully with e.g.
clang -target sparc -mcpu=v9 -c reproducer.s
, butllvm-objdump
doesn't recognize thepopc
:As a comparison, GNU objdump does recognize the instruction.
The text was updated successfully, but these errors were encountered: