From 9c085406904780d25673ad213ac53a4c6e1558c0 Mon Sep 17 00:00:00 2001 From: River Riddle Date: Wed, 27 Mar 2019 08:55:17 -0700 Subject: Replace usages of Instruction with Operation in the /Analysis directory. PiperOrigin-RevId: 240569775 --- mlir/lib/Transforms/LoopTiling.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mlir/lib/Transforms/LoopTiling.cpp') diff --git a/mlir/lib/Transforms/LoopTiling.cpp b/mlir/lib/Transforms/LoopTiling.cpp index c235190b4b7..f99b602cf0b 100644 --- a/mlir/lib/Transforms/LoopTiling.cpp +++ b/mlir/lib/Transforms/LoopTiling.cpp @@ -182,8 +182,7 @@ LogicalResult mlir::tileCodeGen(MutableArrayRef band, // Check if the supplied for inst's are all successively nested. for (unsigned i = 1, e = band.size(); i < e; i++) { - assert(band[i].getOperation()->getParentInst() == - band[i - 1].getOperation()); + assert(band[i].getOperation()->getParentOp() == band[i - 1].getOperation()); } auto origLoops = band; -- cgit v1.2.3