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
As seen in the test output from GaloisInc/llvm-pretty-bc-parser#233, llvm-pretty will ingest
... define dso_local i32 @test1(i32) #0 { ...
but will then emit:
... define default i32 @test1(i32 %0) { ...
where the latter causes a failure when passed to llvm-as version 9:
llvm-as
llvm-as: disasm-test/tests/callbr.pre-llvm10.ll:4:31: error: expected ')' at end of argument list
and it highlights the %0 of the argument list. Prior to llvm-10, it appears that positional argument identifiers are not allowed.
%0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As seen in the test output from GaloisInc/llvm-pretty-bc-parser#233, llvm-pretty will ingest
but will then emit:
where the latter causes a failure when passed to
llvm-as
version 9:and it highlights the
%0
of the argument list. Prior to llvm-10, it appears that positional argument identifiers are not allowed.The text was updated successfully, but these errors were encountered: