From: Reid Kleckner Date: Tue, 16 Sep 2014 17:39:46 +0000 (+0000) Subject: Add a missing return to operator= X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=15b49e12ac305a85d26a592f187e5291c75824f0;p=oota-llvm.git Add a missing return to operator= git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217889 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 1661b034e52..2be9c5979d8 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -87,6 +87,7 @@ struct ExecutionContext { Values = std::move(O.Values); VarArgs = std::move(O.VarArgs); Allocas = std::move(O.Allocas); + return *this; } };