We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6b1cc66 + d79036c commit 105a412Copy full SHA for 105a412
mlir/lib/Dialect/SCF/Utils/Utils.cpp
@@ -671,9 +671,10 @@ LogicalResult mlir::loopUnrollJamByFactor(scf::ForOp forOp,
671
return success();
672
}
673
674
-Range emitNormalizedLoopBoundsForIndexType(RewriterBase &rewriter, Location loc,
675
- OpFoldResult lb, OpFoldResult ub,
676
- OpFoldResult step) {
+static Range emitNormalizedLoopBoundsForIndexType(RewriterBase &rewriter,
+ Location loc, OpFoldResult lb,
+ OpFoldResult ub,
677
+ OpFoldResult step) {
678
Range normalizedLoopBounds;
679
normalizedLoopBounds.offset = rewriter.getIndexAttr(0);
680
normalizedLoopBounds.stride = rewriter.getIndexAttr(1);
0 commit comments