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
When alias are emitter the priority is ignored. Only priority = 0 (do not emit) is handled.
priority = 0
Because of this we can not decide, which alias should be emitted in case of a collision.
E.g.
bta eq, 0x400 ; Emitter beqa 0x400 ; Should be emitter
Possibly it is enough to sort the AliasMap before adding each alias to the IAPrinter:
AliasMap
llvm-capstone/llvm/utils/TableGen/AsmWriterEmitter.cpp
Lines 620 to 645 in 86fea00
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When alias are emitter the priority is ignored. Only
priority = 0
(do not emit) is handled.Because of this we can not decide, which alias should be emitted in case of a collision.
E.g.
Possibly it is enough to sort the
AliasMap
before adding each alias to the IAPrinter:llvm-capstone/llvm/utils/TableGen/AsmWriterEmitter.cpp
Lines 620 to 645 in 86fea00
The text was updated successfully, but these errors were encountered: