-
Notifications
You must be signed in to change notification settings - Fork 12.4k
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
AsmWriter produces wrong output for functions with no name #3983
Comments
Hit the commit button instead of "Add an attachment"! llvm-as: noname.ll:5:21: use of undefined value '@' |
Fixed: Please verify the global case works as well. |
Thanks a lot. Unfortunately globals still don't parse. @0 = global i32 0 Then llvm-as says: llvm-as: noname.ll:1:1: expected top-level entity |
Anonymous globals don't accept a name like that right now, this works fine though: global i32 0 |
…mp-update Updated reflection-dump.test for mpenum section
Extended Description
Same goes for global variables, it seems.
The text was updated successfully, but these errors were encountered: