[NFC] Add ArrayRef includes to two files.
authorStella Laurenzo <stellaraccident@gmail.com>
Thu, 3 Jun 2021 23:38:12 +0000 (16:38 -0700)
committerJacques Pienaar <jpienaar@google.com>
Thu, 3 Jun 2021 23:38:58 +0000 (16:38 -0700)
These started failing on one of our buildbots. I didn't completely root cause the situation and just added the explicit includes that correct the issue.

Reviewed By: rriddle, jpienaar

Differential Revision: https://reviews.llvm.org/D103657

mlir/include/mlir/IR/AffineExprVisitor.h
mlir/include/mlir/Interfaces/FoldInterfaces.h

index 03bb4b2..92db139 100644 (file)
@@ -14,6 +14,7 @@
 #define MLIR_IR_AFFINE_EXPR_VISITOR_H
 
 #include "mlir/IR/AffineExpr.h"
+#include "llvm/ADT/ArrayRef.h"
 
 namespace mlir {
 
index 0c69674..133819d 100644 (file)
@@ -10,6 +10,7 @@
 
 #include "mlir/IR/DialectInterface.h"
 #include "mlir/Support/LogicalResult.h"
+#include "llvm/ADT/ArrayRef.h"
 #include "llvm/ADT/SmallVector.h"
 
 namespace mlir {