search for: c9673e93

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

2012 Feb 27
0
[LLVMdev] How to unroll loop with non-constant boundary
...pletely untested patch that adds the missing logic. -------------- next part -------------- A non-text attachment was scrubbed... Name: SCEV-compare-equal.patch Type: application/octet-stream Size: 2101 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120227/c9673e93/attachment.obj> -------------- next part -------------- - Ben > > Best regards, > Nicolas > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/lis...
2012 Feb 27
3
[LLVMdev] How to unroll loop with non-constant boundary
Dear LLVM, Consider two loops with one interation - First with constant lower bound, second with usual non-constant lower bound: int main(int argc, char ** argv) { int numOfIterations= 1; int stride=1; int lowerBound = 1000; - 1st | int lowerBound = argc; - 2nd int upperBound = lowerBound + (numOfIterations - 1)*stride; int i = lowerBound;