Arguments to IRBuilder CreateCall function

Hi,

I need to pass some arguments to CreateCall function (as Value *).

For example, I need to pass a 64 bit integer (with a value I calculate).

How can I convert the 64 bit integer to a value * in order to pass it?

Thanks a lot,

Tehila.

If I understand you correctly, you're looking for the getInt64 method (see
http://llvm.org/docs/doxygen/html/classllvm_1_1IRBuilderBase.html#a675da14f55ad277eae001b705c42be8b
).

HTH,
Eli

Thanks!

Tehila.