Displaying 3 results from an estimated 3 matches for "bug36".
2015 Jan 03
4
[LLVMdev] LTO v. opt
...visible as a difference between these two)
~/llvm-install/bin/clang -flto -O2 -c -o bug17623.o bug17623.c
"/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.10.0 -lSystem /Users/dcallahan/llvm-install/bin/..\
/lib/clang/3.6.0/lib/darwin/libclang_rt.osx.a -save-temps -o bug36 bug17623.o
(this produces bug36.lto.bc and bug36.lto.opt.bc)
However, if I use “opt” to try and duplicate the actions run by “ld”, as in:
~/llvm-install/bin/opt -O2 -o bug36.opt.bc bug36.lto.bc
This generates a different (much cleaner and correct!) output.
So my questions are:
1. Is it fe...
2015 Jan 05
2
[LLVMdev] LTO v. opt
...e two)
>>
>> ~/llvm-install/bin/clang -flto -O2 -c -o bug17623.o bug17623.c
>> "/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.10.0 -lSystem /Users/dcallahan/llvm-install/bin/..\
>> /lib/clang/3.6.0/lib/darwin/libclang_rt.osx.a -save-temps -o bug36 bug17623.o
>>
>> (this produces bug36.lto.bc and bug36.lto.opt.bc)
>>
>> However, if I use “opt” to try and duplicate the actions run by “ld”, as in:
>>
>> ~/llvm-install/bin/opt -O2 -o bug36.opt.bc bug36.lto.bc
>>
>> This generates a differen...
2015 Jan 05
2
[LLVMdev] LTO v. opt
...visible as a difference between these two)
~/llvm-install/bin/clang -flto -O2 -c -o bug17623.o bug17623.c
"/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.10.0 -lSystem /Users/dcallahan/llvm-install/bin/..\
/lib/clang/3.6.0/lib/darwin/libclang_rt.osx.a -save-temps -o bug36 bug17623.o
(this produces bug36.lto.bc and bug36.lto.opt.bc)
However, if I use “opt” to try and duplicate the actions run by “ld”, as in:
~/llvm-install/bin/opt -O2 -o bug36.opt.bc bug36.lto.bc
This generates a different (much cleaner and correct!) output.
So my questions are:
1. Is it fea...