Displaying 2 results from an estimated 2 matches for "fb5716ff".
2007 May 29
2
[LLVMdev] (no subject)
Hi everyone,
Llvm-gcc compiles the programs into bytecodes with some optimizations. How can I get unoptimized bytecodes?
Thanks.
Regards,
-Ying
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20070530/5f793e95/attachment.html>
2007 May 29
0
[LLVMdev] (no subject)
Using
llvm-gcc -emit-llvm -O0 -S blah.c
will give you blah.s that is unoptimized. I guess passing that to llvm-as
would get you an unoptimized .bc.
llvm-as -debug-pass=Arguments blah.ll says it is only doing
Pass Arguments: -domtree -etforest -verify
scott
On 5/29/07, omiga <omiga at ustc.edu> wrote:
>
> Hi everyone,
>
> Llvm-gcc compiles the programs into bytecodes with