]> granicus.if.org Git - llvm/commitdiff
Add a missing return to operator=
authorReid Kleckner <reid@kleckner.net>
Tue, 16 Sep 2014 17:39:46 +0000 (17:39 +0000)
committerReid Kleckner <reid@kleckner.net>
Tue, 16 Sep 2014 17:39:46 +0000 (17:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217889 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Interpreter/Interpreter.h

index 1661b034e5245047ae8840e0bfaf4878ff72ad03..2be9c5979d808166d30e1a278020f1f358b81e04 100644 (file)
@@ -87,6 +87,7 @@ struct ExecutionContext {
     Values = std::move(O.Values);
     VarArgs = std::move(O.VarArgs);
     Allocas = std::move(O.Allocas);
+    return *this;
   }
 };