From: David Majnemer Date: Fri, 26 Sep 2014 04:47:54 +0000 (+0000) Subject: Fix build breakage on MSVC 2013 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ed2b7578b8911192cf253bf07afab83a76b429dd;p=oota-llvm.git Fix build breakage on MSVC 2013 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218499 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MipsTargetMachine.cpp b/lib/Target/Mips/MipsTargetMachine.cpp index 85729521175..542f24fe8eb 100644 --- a/lib/Target/Mips/MipsTargetMachine.cpp +++ b/lib/Target/Mips/MipsTargetMachine.cpp @@ -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(TargetTriple, CPU, FS, isLittle, this); + I = llvm::make_unique(TargetTriple, CPU, FS, isLittle, this); } return I.get(); }