From ed2b7578b8911192cf253bf07afab83a76b429dd Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Fri, 26 Sep 2014 04:47:54 +0000 Subject: [PATCH] Fix build breakage on MSVC 2013 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218499 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/MipsTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.34.1