mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Workaround MSVC not providing implicit move members
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231204 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2701736388
commit
6d031a308f
@ -65,6 +65,14 @@ namespace llvm {
|
||||
std::unique_ptr<Constant*[]> ConstantStructElts;
|
||||
|
||||
ValID() : Kind(t_LocalID), APFloatVal(0.0) {}
|
||||
// Workaround for MSVC not synthesizing implicit move members.
|
||||
ValID(ValID &&RHS)
|
||||
: Kind(std::move(RHS.Kind)), Loc(std::move(RHS.Loc)),
|
||||
UIntVal(std::move(RHS.UIntVal)), StrVal(std::move(RHS.StrVal)),
|
||||
StrVal2(std::move(RHS.StrVal2)), APSIntVal(std::move(RHS.APSIntVal)),
|
||||
APFloatVal(std::move(RHS.APFloatVal)),
|
||||
ConstantVal(std::move(RHS.ConstantVal)),
|
||||
ConstantStructElts(std::move(RHS.ConstantStructElts)) {}
|
||||
|
||||
bool operator<(const ValID &RHS) const {
|
||||
if (Kind == t_LocalID || Kind == t_GlobalID)
|
||||
|
Loading…
x
Reference in New Issue
Block a user