forked from OSchip/llvm-project
Fix a GCC buildbot that seemed to be having trouble producing the implicit move ctor
llvm-svn: 243791
This commit is contained in:
parent
cf70053b20
commit
ec61aa1c10
|
@ -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…
Reference in New Issue