First Last Prev Next    No search results available
Details
: [X86] Emission of global bool initializers broken
Bug#: 83
: libraries
: Backend: X86
Status: RESOLVED
Resolution: FIXED
: All
: Linux
: 1.0
: P2
: normal
: 1.1

:
: compile-fail
:
:
  Show dependency tree - Show dependency graph
People
Reporter: Chris Lattner <sabre@nondot.org>
Assigned To: Brian R. Gaeke <gaeke+bugs@uiuc.edu>

Attachments


Note

You need to log in before you can comment on or make changes to this bug.

Related actions


Description:   Opened: 2003-11-03 13:29
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
------- Comment #1 From Chris Lattner 2003-11-03 13:36:34 -------
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

First Last Prev Next    No search results available