[mlir][tosa] Added missing includes on PassDetails.h
authorRob Suderman <rob.suderman@gmail.com>
Thu, 1 Jul 2021 23:35:49 +0000 (16:35 -0700)
committerRob Suderman <rob.suderman@gmail.com>
Thu, 1 Jul 2021 23:42:47 +0000 (16:42 -0700)
Includes were missing in the PassDetails.h that cause downstream failures
on TOSA passes.

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

mlir/include/mlir/Dialect/Tosa/Transforms/PassDetail.h

index 004c9ce..1d7ad62 100644 (file)
@@ -9,6 +9,8 @@
 #ifndef MLIR_DIALECT_TOSA_TRANSFORMS_PASSDETAIL_H
 #define MLIR_DIALECT_TOSA_TRANSFORMS_PASSDETAIL_H
 
+#include "mlir/Dialect/StandardOps/IR/Ops.h"
+#include "mlir/Dialect/Tensor/IR/Tensor.h"
 #include "mlir/Pass/Pass.h"
 
 namespace mlir {