From fadf25068e32b44b010e6e03c6ab93bec41eae82 Mon Sep 17 00:00:00 2001 From: James Y Knight Date: Thu, 31 Jan 2019 21:51:58 +0000 Subject: Revert "[opaque pointer types] Add a FunctionCallee wrapper type, and use it." This reverts commit f47d6b38c7a61d50db4566b02719de05492dcef1 (r352791). Seems to run into compilation failures with GCC (but not clang, where I tested it). Reverting while I investigate. llvm-svn: 352800 --- llvm/examples/ParallelJIT/ParallelJIT.cpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'llvm/examples/ParallelJIT/ParallelJIT.cpp') 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(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(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); -- cgit v1.2.3