Fix a GCC buildbot that seemed to be having trouble producing the implicit move ctor
[oota-llvm.git] / include / llvm / Analysis / DependenceAnalysis.h
index 21358bddc2142d233e7dcee3b6e05d7622b88526..791305dbfbb9c1b5f8184fa2d5e2ae646977950a 100644 (file)
@@ -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; }