Skip to content

Commit e1f90b5

Browse files
authored
[mlir] Fix unused from after 7876899
1 parent 7876899 commit e1f90b5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mlir/lib/IR/SymbolTable.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ LogicalResult SymbolTable::rename(StringAttr from, StringAttr to) {
225225

226226
LogicalResult SymbolTable::rename(Operation *op, StringAttr to) {
227227
StringAttr from = getNameIfSymbol(op);
228+
(void)from;
228229

229230
assert(from && "expected valid 'name' attribute");
230231
assert(op->getParentOp() == symbolTableOp &&

0 commit comments

Comments
 (0)