Displaying 1 result from an estimated 1 matches for "0f60fbd9".
2013 Apr 17
1
[LLVMdev] How to transform loop to if-else using LLVM?
Hello everyone,
Sorry to bother you. I'm an undergraduate, and I'm trying to finish my
graduation project using LLVM. In this project, I hope to transform all
loop in program to condition statement. For example,
Before transformation: for (int i = 0; i < 5; i++) a++;
After transformation: int i = 0; if (i < 5) a++; i++;
The idea is very clear, however, I'm a newbie to LLVM.