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.
1 parent eeca616 commit d79036cCopy full SHA for d79036c
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