From: Lang Hames Date: Mon, 11 Jan 2016 19:40:25 +0000 (+0000) Subject: [Orc] Fix missing return. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b843a2acf7dd13bf75d36005715600046c0ce278;p=oota-llvm.git [Orc] Fix missing return. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257373 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h b/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h index fcb036fa371..84af4728b35 100644 --- a/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h +++ b/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h @@ -106,6 +106,7 @@ private: SourceModule = std::move(Other.SourceModule); StubsToClone = std::move(Other.StubsToClone); StubsMgr = std::move(Other.StubsMgr); + return *this; } JITSymbol findSymbol(StringRef Name, bool ExportedSymbolsOnly) {