Fix a -Wpessimizing-move warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper 2015-10-28 04:54:46 +00:00
parent 81bbfcf379
commit 2412f42fae

View File

@ -47,7 +47,7 @@ public:
const Triple& TT = TM->getTargetTriple();
if (TT.getArch() == Triple::x86_64 && TT.isOSDarwin())
return std::move(TM);
return TM;
return nullptr;
}