[llvm] r217889 - Add a missing return to operator=
Reid Kleckner
reid at kleckner.net
Tue Sep 16 10:39:46 PDT 2014
Author: rnk
Date: Tue Sep 16 12:39:46 2014
New Revision: 217889
URL: http://llvm.org/viewvc/llvm-project?rev=217889&view=rev
Log:
Add a missing return to operator=
Modified:
llvm/trunk/lib/ExecutionEngine/Interpreter/Interpreter.h
Modified: llvm/trunk/lib/ExecutionEngine/Interpreter/Interpreter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/Interpreter/Interpreter.h?rev=217889&r1=217888&r2=217889&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/Interpreter/Interpreter.h (original)
+++ llvm/trunk/lib/ExecutionEngine/Interpreter/Interpreter.h Tue Sep 16 12:39:46 2014
@@ -87,6 +87,7 @@ struct ExecutionContext {
Values = std::move(O.Values);
VarArgs = std::move(O.VarArgs);
Allocas = std::move(O.Allocas);
+ return *this;
}
};
More information about the llvm-commits
mailing list