[llvm] r217810 - Add return that was lost somehow in my last commit.
Benjamin Kramer
benny.kra at googlemail.com
Mon Sep 15 12:25:56 PDT 2014
Author: d0k
Date: Mon Sep 15 14:25:55 2014
New Revision: 217810
URL: http://llvm.org/viewvc/llvm-project?rev=217810&view=rev
Log:
Add return that was lost somehow in my last commit.
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=217810&r1=217809&r2=217810&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/Interpreter/Interpreter.h (original)
+++ llvm/trunk/lib/ExecutionEngine/Interpreter/Interpreter.h Mon Sep 15 14:25:55 2014
@@ -45,6 +45,7 @@ public:
AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {}
AllocaHolder &operator=(AllocaHolder &&RHS) {
Allocations = std::move(RHS.Allocations);
+ return *this;
}
~AllocaHolder() {
More information about the llvm-commits
mailing list