summaryrefslogtreecommitdiffstats
path: root/llvm/examples/ParallelJIT/ParallelJIT.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/examples/ParallelJIT/ParallelJIT.cpp')
-rw-r--r--llvm/examples/ParallelJIT/ParallelJIT.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/llvm/examples/ParallelJIT/ParallelJIT.cpp b/llvm/examples/ParallelJIT/ParallelJIT.cpp
index b5815dd2f78..8485848e0a7 100644
--- a/llvm/examples/ParallelJIT/ParallelJIT.cpp
+++ b/llvm/examples/ParallelJIT/ParallelJIT.cpp
@@ -49,10 +49,11 @@ using namespace llvm;
static Function* createAdd1(Module *M) {
// 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".
+ // The '0' terminates the list of argument types.
Function *Add1F =
- Function::Create(FunctionType::get(Type::getInt32Ty(Context),
- {Type::getInt32Ty(Context)}, false),
- Function::ExternalLinkage, "add1", M);
+ cast<Function>(M->getOrInsertFunction("add1",
+ Type::getInt32Ty(M->getContext()),
+ Type::getInt32Ty(M->getContext())));
// Add a basic block to the function. As before, it automatically inserts
// because of the last argument.
@@ -79,10 +80,10 @@ static Function* createAdd1(Module *M) {
static Function *CreateFibFunction(Module *M) {
// Create the fib function and insert it into module M. This function is said
// to return an int and take an int parameter.
- FunctionType *FibFTy = FunctionType::get(Type::getInt32Ty(Context),
- {Type::getInt32Ty(Context)}, false);
- Function *FibF =
- Function::Create(FibFTy, Function::ExternalLinkage, "fib", M);
+ Function *FibF =
+ cast<Function>(M->getOrInsertFunction("fib",
+ Type::getInt32Ty(M->getContext()),
+ Type::getInt32Ty(M->getContext())));
// Add a basic block to the function.
BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", FibF);
OpenPOWER on IntegriCloud