Reputation: 9003
llvm-objdump
has the option -mattr
. If I do llvm-objdump -help
the only useful information that I get is:
-mattr=<a1,+a2,-a3,...> - Target specific attributes
How can I list what are the "target specific attributes"?
Upvotes: 2
Views: 589
Reputation: 1394
I do not know of a way to list the target specific attributes from llvm-objdump
, but you can do this with the llc
or llvm-mc
with the args -march=<your architecture> -mattr=help
(e.g. llc -march=x86 -mattr=help
).
Upvotes: 2