Displaying 1 result from an estimated 1 matches for "1020343".
2012 Jan 12
4
[LLVMdev] How to pass an array to a function using GenericValue
Hi,
My application generates some LLVM assembly code which I then convert to IR
code using ParseAssemblyString. If I have the following LLVM assembly code:
define double @test() {
ret double 1.230000e+02
}
then, using ExecutionEngine::runFunction, I get a GenericValue return value
which DoubleVal property is indeed equal to 123. So, all is fine there.
However, if I have the