search for: 333fa728

Displaying 3 results from an estimated 3 matches for "333fa728".

2013 Oct 07
0
[LLVMdev] Ambiguity in LLVM IR for global variable sections
On 15 September 2013 21:40, David Majnemer <david.majnemer at gmail.com> wrote: > What do we expect from the following IR? > > @i2 = constant i32 30, section "INITDATA", align 4 > @i1 = global i32 0, section "INITDATA", align 4 > > Currently, we stick them in one section that isn't writable which is > problematic because @i1 is writable. If you
2013 Oct 11
1
[LLVMdev] Ambiguity in LLVM IR for global variable sections
...constant section it can print @i1 > differently. It if wants a writable section it can print @i2 > differently. > > Cheers, > Rafael > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131010/333fa728/attachment.html>
2013 Sep 16
3
[LLVMdev] Ambiguity in LLVM IR for global variable sections
What do we expect from the following IR? @i2 = constant i32 30, section "INITDATA", align 4 @i1 = global i32 0, section "INITDATA", align 4 Currently, we stick them in one section that isn't writable which is problematic because @i1 is writable. If you flip @i1 and @i2 you get one section which is writable. It seems like we should do one of the following: 1. Two