-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
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
Parse error for lines starting with carets #183
Comments
Note that the file I mentioned was disassembled with |
Hi @jeshan, Glad to see you exploring the world of LLVM IR :) You've stumbled on module summaries, a concept introduced in LLVM quite some time ago. It is the only concept we know of (as of LLVM 11.0) which has not yet been covered by the grammar of llir/grammar, and is thus not yet implemented in For reference, this is covered by issue #43. Should you feel up for the challenge, we warm heartedly welcome you to join us at the If you want to join, just let us know and we'll send an invite to Discord where we can get you up to speed. Wish you a happy summer and the best of hacking! |
Marking this as duplicate of #43 for now, as they both refer to module summaries. Feel free to close this issue, and send us a ping if you feel like joining us on developing |
Thanks, Robin.
I'm glad you all have managed to get so much work done so far
That is definitely outside of my skill set! |
On calling the following file with
asm.ParseString
:I get an error that says:
If I remove the lines starting with carets, i.e all of these:
Then the parsing completes.
The text was updated successfully, but these errors were encountered: