I'm trying to generate the equivalent of this function dynamically in
llvm (a la <a href="http://llvm.org/docs/tutorial/JITTutorial1.html">http://llvm.org/docs/tutorial/JITTutorial1.html</a>) 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<br>  <br>void fn(int x) <br>{ <br>   another_fn(&x); <br>} <br>  <br>thanks for any suggestions<br>Paul<br>