mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 18:06:49 +00:00
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:
parent
a0201eaca8
commit
273328e8e0
@ -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,
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user