[MCJIT] Fix missing return statement.
authorLang Hames <lhames@gmail.com>
Wed, 26 Nov 2014 17:21:41 +0000 (17:21 +0000)
committerLang Hames <lhames@gmail.com>
Wed, 26 Nov 2014 17:21:41 +0000 (17:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222841 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/RuntimeDyld/GDBRegistrationListener.cpp

index 34f5962dd3bc67799181159e49647bd092fe94cd..5439a77e1a568122f479ccaad7ef8109362e2a0a 100644 (file)
@@ -76,6 +76,7 @@ struct RegisteredObjectInfo {
     Size = Other.Size;
     Entry = Other.Entry;
     Obj = std::move(Other.Obj);
+    return *this;
   }
 
   std::size_t Size;