Displaying 1 result from an estimated 1 matches for "xtf0tx".
Did you mean:
f0tx
2008 Feb 22
2
[LLVMdev] Calling functions
Hello!
I'm trying LLVM for generating code and I found something I cannot figure out or find in the documentation:
I'm doing something like this to call "sin" from std:
std::vector<const Type*> params;
params.push_back( Type::FloatTy );
FunctionType *FT = FunctionType::get( Type::FloatTy, params, false);
Function *F = new Function( FT, Function::ExternalLinkage,