Not only is this a lot smaller, it actually works if there is already a

function with the right name in the module.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8290 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-09-01 16:53:46 +00:00
parent a0201eaca8
commit 273328e8e0
2 changed files with 2 additions and 10 deletions

View File

@ -158,11 +158,7 @@ public:
Cilkifier::Cilkifier(Module& M)
{
// create the dummy Sync function and add it to the Module
DummySyncFunc = new Function(FunctionType::get( Type::VoidTy,
std::vector<const Type*>(),
/*isVararg*/ false),
GlobalValue::ExternalLinkage, DummySyncFuncName,
&M);
DummySyncFunc = M.getOrInsertFunction(DummySyncFuncName, Type::VoidTy, 0);
}
void Cilkifier::TransformFunc(Function* F,

View File

@ -158,11 +158,7 @@ public:
Cilkifier::Cilkifier(Module& M)
{
// create the dummy Sync function and add it to the Module
DummySyncFunc = new Function(FunctionType::get( Type::VoidTy,
std::vector<const Type*>(),
/*isVararg*/ false),
GlobalValue::ExternalLinkage, DummySyncFuncName,
&M);
DummySyncFunc = M.getOrInsertFunction(DummySyncFuncName, Type::VoidTy, 0);
}
void Cilkifier::TransformFunc(Function* F,