File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lib/Conversion/AffineToStandard Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ class AffineYieldOpLowering : public OpRewritePattern<AffineYieldOp> {
334
334
335
335
LogicalResult matchAndRewrite (AffineYieldOp op,
336
336
PatternRewriter &rewriter) const override {
337
- if (isa<scf::ParallelOp>(op. getParentOp ())) {
337
+ if (isa<scf::ParallelOp>(op-> getParentOp ())) {
338
338
// scf.parallel does not yield any values via its terminator scf.yield but
339
339
// models reductions differently using additional ops in its region.
340
340
rewriter.replaceOpWithNewOp <scf::YieldOp>(op);
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ void ReportShapeFnPass::runOnOperation() {
49
49
50
50
// Lookup shape function library.
51
51
SmallVector<shape::FunctionLibraryOp, 4 > libraries;
52
- auto attr = module . getAttr (" shape.lib" );
52
+ auto attr = module -> getAttr (" shape.lib" );
53
53
if (attr) {
54
54
auto lookup = [&](Attribute attr) {
55
55
return cast<shape::FunctionLibraryOp>(
You can’t perform that action at this time.
0 commit comments