Bugzilla – Bug 83
[X86] Emission of global bool initializers broken
Last modified: 2003-11-03 13:36:34
You need to log in before you can comment on or make changes to this bug.
The x86 backend currently compiles this: --- %X = global bool true --- to: --- X: # bool* %X = true .byte true --- instead of: .byte 1 This causes compilation of eon to fail. Testcase: test/Regression/Jello/2003-11-03-GlobalBool.llx
This is fixed by this patch: http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20031103/009077.html 252.eon still crashes, but at least the .s file assembles now. -Chris