Skip to content

Commit 78389de

Browse files
committed
Add back missing return to non-void function
It was incorrectly removed accidentally in e4e463e.
1 parent a5a24c9 commit 78389de

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mlir/lib/Conversion/TosaToLinalg/TosaToLinalg.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,6 +1665,7 @@ class ResizeConverter : public OpRewritePattern<tosa::ResizeOp> {
16651665
rewriter.create<linalg::YieldOp>(loc, result);
16661666
return success();
16671667
}
1668+
return failure();
16681669
}
16691670
};
16701671

0 commit comments

Comments
 (0)