Displaying 3 results from an estimated 3 matches for "25e30315".
Did you mean:
20130315
2010 Apr 11
3
[LLVMdev] Specifying a sequence of optimization flags on llvm-gcc
Hello all,
I'm very new to llvm, and I'm trying to compile a C file using llvm-gcc, but
I'd like to specify the optimization passes sequence by myself. How can I do
this?
Thanks!
Felipe
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100411/cbacb9cf/attachment.html>
2010 Apr 12
0
[LLVMdev] Specifying a sequence of optimization flags on llvm-gcc
Hi Felipe,
> I'm very new to llvm, and I'm trying to compile a C file using llvm-gcc,
> but I'd like to specify the optimization passes sequence by myself. How
> can I do this?
try something like this:
llvm-gcc -c -emit-llvm -o - | opt ...list.transforms.here... > result.bc
This results in optimized bitcode in result.bc.
Ciao,
Duncan.
2010 Apr 13
3
[LLVMdev] Specifying a sequence of optimization flags on llvm-gcc
...this transforms list applied in the same order
it's given to the command line? Can I repeat a transformation pass within a
list?
Thanks you!
Felipe
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100413/25e30315/attachment.html>