From 2bce8997543b6237e6786e3b64b241cf145ec6b8 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 llvm-svn: 218499 --- 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(); }