search for: ce91adf8

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

2013 Feb 22
0
[LLVMdev] Does LLVM optimize variable to constant value in the compiling time?
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] > On Behalf Of Robert Sandra > Subject: [LLVMdev] Does LLVM optimize variable to constant value in the compiling time? > Considering the following codes: > int x = 21;  > if(x > 20) {  >    p = &C;  > } else {  >    p = &E;  > } > I looked into the bitcode that LLVM
2013 Feb 22
1
[LLVMdev] Does LLVM optimize variable to constant value in the compiling time?
...ded recipient. If you > received this in error, please contact the sender and delete the e-mail and > its attachments from all computers. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130222/ce91adf8/attachment.html>
2013 Feb 22
4
[LLVMdev] Does LLVM optimize variable to constant value in the compiling time?
Considering the following codes: int x = 21; if(x > 20) { p = &C; } else { p = &E; } I looked into the bitcode that LLVM generates, it still considers the 'else' branch, which will be never reached during the runtime. Thanks, Robert -------------- next part -------------- An HTML attachment was scrubbed... URL: