R600/AMDILPeepholeOptimizer.cpp: Tweak std::make_pair to satisfy C++11.
llvm-svn: 173807
This commit is contained in:
parent
f7db433ed4
commit
978b5a0e02
|
|
@ -366,7 +366,7 @@ AMDGPUPeepholeOpt::optimizeCallInst(BasicBlock::iterator *bbb) {
|
|||
std::string buffer(F->getName().str() + "_noret");
|
||||
F = dyn_cast<Function>(
|
||||
F->getParent()->getOrInsertFunction(buffer, F->getFunctionType()));
|
||||
atomicFuncs.push_back(std::make_pair <CallInst*, Function*>(CI, F));
|
||||
atomicFuncs.push_back(std::make_pair(CI, F));
|
||||
}
|
||||
|
||||
if (!mSTM->device()->isSupported(AMDGPUDeviceInfo::ArenaSegment)
|
||||
|
|
|
|||
Loading…
Reference in New Issue