Skip to content

Commit 9e39a0c

Browse files
committed
[MLIR][ArmSME] Fix for block sorting refactor
This commit fixes a breakage introduced by changing the name of the block sorting function. Related PR: #92558
1 parent e919df5 commit 9e39a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/ArmSME/Transforms/TileAllocation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ DenseMap<Operation *, unsigned>
333333
generateOperationNumbering(FunctionOpInterface function) {
334334
unsigned index = 0;
335335
SetVector<Block *> blocks =
336-
getTopologicallySortedBlocks(function.getFunctionBody());
336+
getBlocksSortedByDominance(function.getFunctionBody());
337337
DenseMap<Operation *, unsigned> operationToIndexMap;
338338
for (Block *block : blocks) {
339339
index++; // We want block args to have their own number.

0 commit comments

Comments
 (0)