search for: 1eca8f0d

Displaying 2 results from an estimated 2 matches for "1eca8f0d".

2013 Apr 24
0
[LLVMdev] Another missed optimization opportunity?
...n to determine that the extern should be volatile and issue an warning/error. One more reason to use explicit barriers instead of volatile. ;) -Cameron -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130424/1eca8f0d/attachment.html>
2013 Apr 24
8
[LLVMdev] Another missed optimization opportunity?
I was suprised to find that some bitcode I'm generating isn't getting optimized. Here, I'm doing the equivalent of "myarray[5]++" (on an "extern int *myarray"), repeated three times: @myarray = external global i32* define void @update_array() #0 { %1 = load i32** @myarray, align 8 %2 = getelementptr inbounds i32* %1, i64 5 %3 = load