search for: junmendoza78

Displaying 2 results from an estimated 2 matches for "junmendoza78".

2011 Aug 08
0
[LLVMdev] Temporary register subscript
On Sun, Aug 7, 2011 at 9:01 PM, Jun Mendoza <junmendoza78 at gmail.com> wrote: > Hi Folks, > I noticed that recently in the online code gen demo that generating the > unique temporaries have been modified. > I don't believe i changed any options. (C++, demangle names, no > optimization) > > Where: > if(x >= y){ > } &gt...
2011 Aug 08
2
[LLVMdev] Temporary register subscript
Hi Folks, I noticed that recently in the online code gen demo that generating the unique temporaries have been modified. I don't believe i changed any options. (C++, demangle names, no optimization) *Where:* * * if(x >= y){ } *Previously Compiles to:* %0 = load i32* %x, align 4 %1 = load i32* %y, align 4 %2 = icmp sge i32 %0, %1 br i1 %2, label %bb, label %bb1 bb: ; true goes here