projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61e184d
)
Add a missing return to operator=
author
Reid Kleckner
<reid@kleckner.net>
Tue, 16 Sep 2014 17:39:46 +0000
(17:39 +0000)
committer
Reid Kleckner
<reid@kleckner.net>
Tue, 16 Sep 2014 17:39:46 +0000
(17:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217889
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/ExecutionEngine/Interpreter/Interpreter.h
patch
|
blob
|
history
diff --git
a/lib/ExecutionEngine/Interpreter/Interpreter.h
b/lib/ExecutionEngine/Interpreter/Interpreter.h
index 1661b034e5245047ae8840e0bfaf4878ff72ad03..2be9c5979d808166d30e1a278020f1f358b81e04 100644
(file)
--- 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;
}
};