1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +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 // creation will depend on the TM and the code generation flags on the
// function that reside in TargetOptions. // function that reside in TargetOptions.
resetTargetOptions(F); resetTargetOptions(F);
I = make_unique<MipsSubtarget>(TargetTriple, CPU, FS, isLittle, this); I = llvm::make_unique<MipsSubtarget>(TargetTriple, CPU, FS, isLittle, this);
} }
return I.get(); return I.get();
} }