<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">I’m not aware of whether one exists in 2.7 (it didn’t in 2.6 IIRC), but it’s pretty easy to write one up for yourself if necessary. I did something like this using 2.6:<div><br></div><div><div>void *LLVMGetPointerToFunction(LLVMExecutionEngineRef compiler, LLVMValueRef function) {</div><div><span class="Apple-tab-span" style="white-space:pre">       </span>llvm::ExecutionEngine *cppCompiler = llvm::unwrap(compiler);</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>llvm::Function *cppFunction = llvm::unwrap<llvm::Function>(function);</div><div><span class="Apple-tab-span" style="white-space:pre">  </span>return cppCompiler->getPointerToFunction(cppFunction);</div><div>}</div><div><br></div><div>Rob</div><div><br><div><div><div>On 2010-05-11, at 3:19 AM, Georg Troxler wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div>
<font face="Calibri, Verdana, Helvetica, Arial"><span style="font-size:11pt">Hi,<br>
<br>
Is there such a function (or a similar one) which is callable using the c-binding llvm?<br>
<br>
Many thanks,<br>
<br>
Georg<br>
<br>
<br>
<br>
<br>
</span></font>
</div>


_______________________________________________<br>LLVM Developers mailing list<br><a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu">http://llvm.cs.uiuc.edu</a><br><a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br></blockquote></div><br><div>
<span class="Apple-style-span" style="font-family: 'Lucida Sans Std'; font-size: 11px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Lucida Sans Std'; font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div><br class="Apple-interchange-newline">--</div><div>Rob Rix, Unknown Quantity</div><div>Monochrome Industries</div></span></div></span>
</div>
<br></div></div></div></body></html>