[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)
llvm-svn: 222841

llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrationListener.cpp

index 34f5962..5439a77 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;