summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/Interpreter
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2014-09-15 19:25:55 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2014-09-15 19:25:55 +0000
commit88860cba6659fb0edfe7ed419fce2d84bfc618a3 (patch)
treee9ade0c227d13f75d83108baa235cfaf7411bb89 /llvm/lib/ExecutionEngine/Interpreter
parentd48b51be23b5627ef7ec81e2f060e6ce1912657f (diff)
downloadbcm5719-llvm-88860cba6659fb0edfe7ed419fce2d84bfc618a3.tar.gz
bcm5719-llvm-88860cba6659fb0edfe7ed419fce2d84bfc618a3.zip
Add return that was lost somehow in my last commit.
llvm-svn: 217810
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter')
-rw-r--r--llvm/lib/ExecutionEngine/Interpreter/Interpreter.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
index 8ec6a6513e3..9715e71e859 100644
--- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -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() {
OpenPOWER on IntegriCloud