diff options
author | David Majnemer <david.majnemer@gmail.com> | 2014-09-26 04:47:54 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2014-09-26 04:47:54 +0000 |
commit | ec44e4d05382e668ac84467a1ed99f398cd4a170 (patch) | |
tree | b3470a79087e8394da2d13249c67db7b9ca47d17 /llvm/lib/Target/Mips/MipsTargetMachine.cpp | |
parent | 1ac52ebfe29ae62d56b483f9aee0a1dbff3f3673 (diff) | |
download | bcm5719-llvm-ec44e4d05382e668ac84467a1ed99f398cd4a170.tar.gz bcm5719-llvm-ec44e4d05382e668ac84467a1ed99f398cd4a170.zip |
Fix build breakage on MSVC 2013
llvm-svn: 218499
Diffstat (limited to 'llvm/lib/Target/Mips/MipsTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetMachine.cpp b/llvm/lib/Target/Mips/MipsTargetMachine.cpp index 85729521175..542f24fe8eb 100644 --- a/llvm/lib/Target/Mips/MipsTargetMachine.cpp +++ b/llvm/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<MipsSubtarget>(TargetTriple, CPU, FS, isLittle, this); + I = llvm::make_unique<MipsSubtarget>(TargetTriple, CPU, FS, isLittle, this); } return I.get(); } |