search for: 443c7244

Displaying 3 results from an estimated 3 matches for "443c7244".

Did you mean: 4237244
2012 Jan 24
0
[LLVMdev] Convert .ll file to .c file
Sarath Chandra wrote: > Hi, > > I wanted to convert .ll file to .c file (for the sake of debugging > the c file). I used the command "llc" with "-march=c" option. But i'm > getting the below error. > > * llc: error: invalid target 'c' * > * > * > My script file code for converting it is: > > llvm-as -f module.ll > opt
2012 Jan 24
1
[LLVMdev] Convert .ll file to .c file
...e looking for configure --enable-targets=x86,cbe . > > Nick > -- Sairam, (¨`·.·´¨) `·.¸(¨`·.·´¨) (¨`·.·´¨)¸.·´ Sarath!!! `·.¸.·´ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120124/443c7244/attachment.html>
2012 Jan 24
2
[LLVMdev] Convert .ll file to .c file
Hi, I wanted to convert .ll file to .c file (for the sake of debugging the c file). I used the command "llc" with "-march=c" option. But i'm getting the below error. *llc: error: invalid target 'c'* * * My script file code for converting it is: llvm-as -f module.ll opt -o=module.bc module.bc llvm-dis module.bc llc -f -march=c module.bc #gcc