search for: bcea779d

Displaying 3 results from an estimated 3 matches for "bcea779d".

2013 Jun 25
0
[LLVMdev] vmkit variables internal representation
Hi Alexandru, > For the local variable Q, it seems that the compiler is optimizing and > considering store i32 10691, i32* .... (into balance). Do you know how I can > compile the code for preserving Q? You've probably got to convince the compiler not to optimise since eliminating those variables is probably one of the simpler things that goes on during optimisation. I'd expect
2013 Jun 25
2
[LLVMdev] vmkit variables internal representation
Hello everyone ! I am quite new to java under LLVM. I have the following code in Java: class MYGL { public static int P; public static int balance; }         int Q;         MYGL.P=5984;         Q=4597;         MYGL.balance=Q+6094; For the local variable Q, it seems that the compiler is optimizing and considering store i32 10691, i32* .... (into balance). Do you know how I can compile the code
2013 Jun 25
2
[LLVMdev] vmkit variables internal representation
...f you post a full .ll file we may be able to say more. Or someone may be along who knows the Java LLVM compiler off the top of their head. Cheers. Tim. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130625/bcea779d/attachment.html>