mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-09 01:38:03 +00:00
Fix a GCC buildbot that seemed to be having trouble producing the implicit move ctor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243791 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bd11ccb2b9
commit
d79f0dd3d4
@ -224,6 +224,11 @@ namespace llvm {
|
||||
FullDependence(Instruction *Src, Instruction *Dst, bool LoopIndependent,
|
||||
unsigned Levels);
|
||||
|
||||
FullDependence(FullDependence &&RHS)
|
||||
: Dependence(RHS), Levels(RHS.Levels),
|
||||
LoopIndependent(RHS.LoopIndependent), Consistent(RHS.Consistent),
|
||||
DV(std::move(RHS.DV)) {}
|
||||
|
||||
/// isLoopIndependent - Returns true if this is a loop-independent
|
||||
/// dependence.
|
||||
bool isLoopIndependent() const override { return LoopIndependent; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user