[Mlir-commits] [mlir] 84bd26a - [mlir] Fix the build by using correct symbol name
Kirill Bobyrev
llvmlistbot at llvm.org
Fri Feb 28 02:33:41 PST 2020
Author: Kirill Bobyrev
Date: 2020-02-28T11:32:43+01:00
New Revision: 84bd26afb62d6b6f3f7e22dd3b76aac65ceee023
URL: https://github.com/llvm/llvm-project/commit/84bd26afb62d6b6f3f7e22dd3b76aac65ceee023
DIFF: https://github.com/llvm/llvm-project/commit/84bd26afb62d6b6f3f7e22dd3b76aac65ceee023.diff
LOG: [mlir] Fix the build by using correct symbol name
s/ArrayRef/llvm::ArrayRef/g since it's outside llvm namespace.
Related revision: 9227a74b7e8ff9b9cb5924e03547b940dc06e331
Added:
Modified:
mlir/include/mlir/Dialect/LoopOps/Transforms.h
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/LoopOps/Transforms.h b/mlir/include/mlir/Dialect/LoopOps/Transforms.h
index 72d85f0b71e9..4a8c96e0d916 100644
--- a/mlir/include/mlir/Dialect/LoopOps/Transforms.h
+++ b/mlir/include/mlir/Dialect/LoopOps/Transforms.h
@@ -40,7 +40,7 @@ void naivelyFuseParallelOps(Region ®ion);
/// min(tileSize[1], %arg3-%j1))
/// step (%arg4, %arg5)
/// The old loop is replaced with the new one.
-void tileParallelLoop(ParallelOp op, ArrayRef<int64_t> tileSizes);
+void tileParallelLoop(ParallelOp op, llvm::ArrayRef<int64_t> tileSizes);
} // namespace loop
} // namespace mlir
More information about the Mlir-commits
mailing list