[ORC] Fix some missing fields in OrcRemoteTargetClient's move constructor.
authorLang Hames <lhames@gmail.com>
Fri, 2 Sep 2016 03:45:44 +0000 (03:45 +0000)
committerLang Hames <lhames@gmail.com>
Fri, 2 Sep 2016 03:45:44 +0000 (03:45 +0000)
llvm-svn: 280459

llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h

index bad250b..42b5b50 100644 (file)
@@ -49,7 +49,8 @@ public:
         RemoteTrampolineSize(std::move(Other.RemoteTrampolineSize)),
         RemoteIndirectStubSize(std::move(Other.RemoteIndirectStubSize)),
         AllocatorIds(std::move(Other.AllocatorIds)),
-        IndirectStubOwnerIds(std::move(Other.IndirectStubOwnerIds)) {}
+        IndirectStubOwnerIds(std::move(Other.IndirectStubOwnerIds)),
+        CallbackManager(std::move(Other.CallbackManager)) {}
 
   OrcRemoteTargetClient &operator=(OrcRemoteTargetClient &&) = delete;