diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-09-15 19:25:55 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-09-15 19:25:55 +0000 |
commit | 88860cba6659fb0edfe7ed419fce2d84bfc618a3 (patch) | |
tree | e9ade0c227d13f75d83108baa235cfaf7411bb89 /llvm/lib/ExecutionEngine/Interpreter | |
parent | d48b51be23b5627ef7ec81e2f060e6ce1912657f (diff) | |
download | bcm5719-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.h | 1 |
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() { |