summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2014-09-16 16:16:39 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2014-09-16 16:16:39 +0000
commit4be38d724fbdd74e77ab89eaefc2b5bab73f00af (patch)
treeb3eb9c09274e51e1d7500076df7653e49806e9b7 /llvm/lib/ExecutionEngine
parent3175f49d339abae8b0928dfba58b78458f29f4c1 (diff)
downloadbcm5719-llvm-4be38d724fbdd74e77ab89eaefc2b5bab73f00af.tar.gz
bcm5719-llvm-4be38d724fbdd74e77ab89eaefc2b5bab73f00af.zip
Spell out a move ctor. Even the 2013 vintage of MSVC cannot synthesize move ctors.
llvm-svn: 217879
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r--llvm/lib/ExecutionEngine/Interpreter/Interpreter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
index 282b1e04bea..befd5c76d83 100644
--- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -51,7 +51,7 @@ public:
return *this;
}
#else
- AllocaHolder(AllocaHolder &&RHS) = default;
+ AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {}
#endif
~AllocaHolder() {
OpenPOWER on IntegriCloud