[llvm] r280459 - [ORC] Fix some missing fields in OrcRemoteTargetClient's move constructor.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 1 20:45:44 PDT 2016


Author: lhames
Date: Thu Sep  1 22:45:44 2016
New Revision: 280459

URL: http://llvm.org/viewvc/llvm-project?rev=280459&view=rev
Log:
[ORC] Fix some missing fields in OrcRemoteTargetClient's move constructor.


Modified:
    llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h

Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h?rev=280459&r1=280458&r2=280459&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h Thu Sep  1 22:45:44 2016
@@ -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;
 




More information about the llvm-commits mailing list