mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-30 15:45:26 +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. llvm-svn: 8290
This commit is contained in:
parent
3bef1d6ae4
commit
b70da7293b
@ -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