search for: qmodul

Displaying 1 result from an estimated 1 matches for "qmodul".

Did you mean: modul
2008 Jan 25
1
[LLVMdev] Something about the andersens pass
...-g++ compiled code. 3) I aggressively inline my generated code with a function pass manager, and end up with a monster function. 4) I run the following pass: { PassManager PM; PM.add(new TargetData(*EE->getTargetData())); PM.add(createInstructionCombiningPass()); PM.run(*qModule); } I then run another pass: PassManager PM; PM.add(new TargetData(*EE->getTargetData())); PM.add(createVerifierPass()); //PM.add(createAndersensPass()); // Seems to break dynamic casts in combo with load value numbering PM.add(createLoadValueNumberingPass()); PM.add(cr...