search for: e8eac370

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

2013 Oct 06
0
[LLVMdev] Suggestion on simple optimization pass for a beginner?
On 10/6/13 7:23 AM, Rekha R wrote: > Hello, > > I am a beginner in LLVM development with the aim of writing a new > optimization pass. But then before I could do that, I thought of > writing simple passes. I could successfully implement the Hello pass > as given in the doc. Then I wrote a simple Constant Folding pass - > evaluate instructions of the form c=10+20 and
2013 Oct 06
3
[LLVMdev] Suggestion on simple optimization pass for a beginner?
Hello, I am a beginner in LLVM development with the aim of writing a new optimization pass. But then before I could do that, I thought of writing simple passes. I could successfully implement the Hello pass as given in the doc. Then I wrote a simple Constant Folding pass - evaluate instructions of the form c=10+20 and replace all uses of c with 30. Only later did I realize that Clang does this