1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix build breakage on MSVC 2013

llvm-svn: 218499
This commit is contained in:
David Majnemer 2014-09-26 04:47:54 +00:00
parent 032b6bd999
commit 2bce899754

View File

@ -116,7 +116,7 @@ MipsTargetMachine::getSubtargetImpl(const Function &F) const {
// creation will depend on the TM and the code generation flags on the
// function that reside in TargetOptions.
resetTargetOptions(F);
I = make_unique<MipsSubtarget>(TargetTriple, CPU, FS, isLittle, this);
I = llvm::make_unique<MipsSubtarget>(TargetTriple, CPU, FS, isLittle, this);
}
return I.get();
}