Displaying 3 results from an estimated 3 matches for "class_prog".
Did you mean:
class_arg
2005 Apr 26
1
[LLVMdev] Compilation without optimization
Thanks !!
But if i generate a .bc file like this and then run my pass over it like this :
opt -load /home/llvm-cvs/llvm/Debug/lib/LLVMHello.so -hello <helloprog.bc> class_prog.bc
Will the new .bc file (class_prog.bc) be also without optimizations ?opt also does some optimizations.Can I control them ?
Thanks
Tanu
Chris Lattner <sabre at nondot.org> wrote:
On Mon, 25 Apr 2005, Tanu Sharma wrote:
> Thanks for the reply.
>
> I wish to compile without opt...
2005 Apr 25
0
[LLVMdev] Compilation without optimization
On Mon, 25 Apr 2005, Tanu Sharma wrote:
> Thanks for the reply.
>
> I wish to compile without optimizations ( the option being turned off )
> but still generate bytecode file.
>
> Options -S , -c removes optimizations but I also need .bc file to
> experiment and use further.
Passing "-Wa,-disable-opt -Wl,-disable-opt" will disable *all* cleanup and
optimizations
2005 Apr 25
2
[LLVMdev] Compilation without optimization
Thanks for the reply.
I wish to compile without optimizations ( the option being turned off ) but still generate bytecode file.
Options -S , -c removes optimizations but I also need .bc file to experiment and use further.
How should I do it?
Thanks
-TS
Chris Lattner <sabre at nondot.org> wrote:
On Sat, 23 Apr 2005, Tanu Sharma wrote:
> I got very useful replies from dev list