diff options
Diffstat (limited to 'llvm/examples/HowToUseJIT/HowToUseJIT.cpp')
-rw-r--r-- | llvm/examples/HowToUseJIT/HowToUseJIT.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/examples/HowToUseJIT/HowToUseJIT.cpp b/llvm/examples/HowToUseJIT/HowToUseJIT.cpp index 29116131b16..30354d4cae6 100644 --- a/llvm/examples/HowToUseJIT/HowToUseJIT.cpp +++ b/llvm/examples/HowToUseJIT/HowToUseJIT.cpp @@ -69,8 +69,9 @@ int main() { // Create the add1 function entry and insert this entry into module M. The // function will have a return type of "int" and take an argument of "int". Function *Add1F = - cast<Function>(M->getOrInsertFunction("add1", Type::getInt32Ty(Context), - Type::getInt32Ty(Context))); + Function::Create(FunctionType::get(Type::getInt32Ty(Context), + {Type::getInt32Ty(Context)}, false), + Function::ExternalLinkage, "add1", M); // Add a basic block to the function. As before, it automatically inserts // because of the last argument. @@ -99,7 +100,8 @@ int main() { // Now we're going to create function `foo', which returns an int and takes no // arguments. Function *FooF = - cast<Function>(M->getOrInsertFunction("foo", Type::getInt32Ty(Context))); + Function::Create(FunctionType::get(Type::getInt32Ty(Context), {}, false), + Function::ExternalLinkage, "foo", M); // Add a basic block to the FooF function. BB = BasicBlock::Create(Context, "EntryBlock", FooF); |