Displaying 2 results from an estimated 2 matches for "9028e1d9".
2013 Oct 07
0
[LLVMdev] Pass sequence
...re will be appreciated.
In answer to the last part of your question, maybe you're looking for PassManagerBuilder::populateModulePassManager.
-Andy
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131006/9028e1d9/attachment.html>
2013 Oct 06
3
[LLVMdev] Pass sequence
Hi all,
I wrote 2 passes and I want to make run llvm run the passes in this order:
-mem2reg -load=…/mypass1.dylib -mypass1 -load=…/mypass2.dylib -mypass2 -O1 -O2 -O3
I know I can do this by manually passing them as an argument to opt.
Is there any way to force this sequence directly from clang?
I am asking this because I am trying to compile a program and I can specify in the ./configure