Displaying 2 results from an estimated 2 matches for "7d05f07a".
Did you mean:
7d056c7a
2009 May 24
3
[LLVMdev] llvm address of
I'm trying to generate the equivalent of this function dynamically in llvm
(a la http://llvm.org/docs/tutorial/JITTutorial1.html) but after half a day
of searching I still haven't found how to create the equivalent of the &
(address of) operator in the llvm API, more exactly how do I obtain the i8*
from the i32 below
void fn(int x)
{
another_fn(&x);
}
thanks for any
2009 May 24
0
[LLVMdev] llvm address of
On 2009-05-24 19:42, Paul Martin wrote:
> I'm trying to generate the equivalent of this function dynamically in
> llvm (a la http://llvm.org/docs/tutorial/JITTutorial1.html) but after
> half a day of searching I still haven't found how to create the
> equivalent of the & (address of) operator in the llvm API, more
> exactly how do I obtain the i8* from the i32 below
>