search for: c7b0ecba

Displaying 2 results from an estimated 2 matches for "c7b0ecba".

2006 Jan 11
2
[LLVMdev] how to convert into SSA form
On Wed, 11 Jan 2006, Reid Spencer wrote: > llvm-as file.bc | opt -mem2reg | llvm-dis > file.ll llvm-as < file.bc | opt -mem2reg | llvm-dis > file.ll Note the extra "<". -Chris > On Wed, 2006-01-04 at 09:12 +0800, lizhuo wrote: >> meone tell me how to convert LLVM bytecode into minimal SSA form ? >> or just depend on GCC frontend ? > -Chris --
2006 Jan 12
0
[LLVMdev] how to convert into SSA form
On Wed, Jan 11, 2006 at 02:04:36PM -0600, Chris Lattner wrote: > On Wed, 11 Jan 2006, Reid Spencer wrote: > >llvm-as file.bc | opt -mem2reg | llvm-dis > file.ll > > llvm-as < file.bc | opt -mem2reg | llvm-dis > file.ll > > Note the extra "<". Strictly speaking, llvm-as converts .ll to .bc so that would be: llvm-as < input.ll | opt -mem2reg |