Displaying 2 results from an estimated 2 matches for "b5c84524".
2013 Dec 17
0
[LLVMdev] Add call printf instructions problems
> But I got another problems. I successfully compile the pass and I can insert
> the call printf (C Lib function) instructions in the LLVM IR(eg: call.bc).
> If the call.bc didn't contain call printf instruction ,I can call printf
> successfully ,but if not ,there exists a problem. the llvm will rename my
> inserted call function , and the transformed code can not run correctly!
2013 Dec 17
2
[LLVMdev] Add call printf instructions problems
Thanks,Cheers!
I found the problem is that the "Function *call_print" using the same name
as the “class call_print”, which made the compiler wrongly resolved the
call_print type!
But I got another problems. I successfully compile the pass and I can
insert the call printf (C Lib function) instructions in the LLVM IR(eg:
call.bc). If the call.bc didn't contain call printf