Skip to content

Commit 257975f

Browse files
authored
[mlir] Fix node numbering order in SliceMatchers example (#155684)
After reviewing this again, it looks like I missed some nodes. Node 7 uses node 1 and 5 as well.
1 parent 4880940 commit 257975f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Query/Matcher/SliceMatchers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
/// 9
3737
///
3838
/// Assuming all local orders match the numbering order:
39-
/// {5, 7, 6, 8, 9}
39+
/// {1, 5, 6, 7, 8, 9}
4040
namespace mlir::query::matcher {
4141

4242
template <typename Matcher>

0 commit comments

Comments
 (0)