[Mlir-commits] [mlir] 8a96993 - [NFC] Add ArrayRef includes to two files.
Jacques Pienaar
llvmlistbot at llvm.org
Thu Jun 3 16:39:18 PDT 2021
Author: Stella Laurenzo
Date: 2021-06-03T16:38:58-07:00
New Revision: 8a96993da5ef408847505ec2e470805a71c30392
URL: https://github.com/llvm/llvm-project/commit/8a96993da5ef408847505ec2e470805a71c30392
DIFF: https://github.com/llvm/llvm-project/commit/8a96993da5ef408847505ec2e470805a71c30392.diff
LOG: [NFC] Add ArrayRef includes to two files.
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
Added:
Modified:
mlir/include/mlir/IR/AffineExprVisitor.h
mlir/include/mlir/Interfaces/FoldInterfaces.h
Removed:
################################################################################
diff --git a/mlir/include/mlir/IR/AffineExprVisitor.h b/mlir/include/mlir/IR/AffineExprVisitor.h
index 03bb4b24db54..92db1390e30d 100644
--- a/mlir/include/mlir/IR/AffineExprVisitor.h
+++ b/mlir/include/mlir/IR/AffineExprVisitor.h
@@ -14,6 +14,7 @@
#define MLIR_IR_AFFINE_EXPR_VISITOR_H
#include "mlir/IR/AffineExpr.h"
+#include "llvm/ADT/ArrayRef.h"
namespace mlir {
diff --git a/mlir/include/mlir/Interfaces/FoldInterfaces.h b/mlir/include/mlir/Interfaces/FoldInterfaces.h
index 0c696747174a..133819d95569 100644
--- a/mlir/include/mlir/Interfaces/FoldInterfaces.h
+++ b/mlir/include/mlir/Interfaces/FoldInterfaces.h
@@ -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 {
More information about the Mlir-commits
mailing list