Skip to content

Commit 3bde109

Browse files
committed
Inizialize SymbolTableCollection before Liveness
1 parent a96341a commit 3bde109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/Bufferization/IR/BufferDeallocationOpInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void Ownership::combine(Ownership other) { *this = getCombined(other); }
9696

9797
DeallocationState::DeallocationState(Operation *op,
9898
SymbolTableCollection &symbolTables)
99-
: liveness(op), symbolTable(symbolTables) {}
99+
: symbolTable(symbolTables), liveness(op) {}
100100

101101
void DeallocationState::updateOwnership(Value memref, Ownership ownership,
102102
Block *block) {

0 commit comments

Comments
 (0)