[mlir] Fix the build by using correct symbol name

s/ArrayRef/llvm::ArrayRef/g since it's outside llvm namespace.

Related revision: 9227a74b7e8ff9b9cb5924e03547b940dc06e331
This commit is contained in:
Kirill Bobyrev 2020-02-28 11:30:19 +01:00
parent c074f5234d
commit 84bd26afb6
No known key found for this signature in database
GPG Key ID: 2307C055C8384FA0

View File

@ -40,7 +40,7 @@ void naivelyFuseParallelOps(Region &region);
/// 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