search for: 756e0442

Displaying 2 results from an estimated 2 matches for "756e0442".

2012 Oct 17
0
[LLVMdev] SimplifyCFG vs loops
...transformations in a quick > pass, and having a more aggressive pass that does preserve loop structure? It's not clear what the problem is. Dan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121017/756e0442/attachment.html>
2012 Oct 17
4
[LLVMdev] SimplifyCFG vs loops
Hello All, The current implementation of the CFG simplification is loop-agnostic. In the past I have observed that it can perform transformations that can be detrimental to the loop structure. One example that I recall, is converting a loop like this: while (...) { ... if (cond) continue; ... } into two nested loops. Specifically, the "continue" branch