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 af2a957 commit de5a7d7Copy full SHA for de5a7d7
mlir/lib/Dialect/Bufferization/Transforms/FuncBufferizableOpInterfaceImpl.cpp
@@ -265,10 +265,7 @@ struct CallOpInterface
265
// bufferized callee.
266
SmallVector<Value> newOperands;
267
268
- // TODO Avoid recomputing the symbol tables every time.
269
- SymbolTableCollection symbolTable;
270
-
271
- FuncOp funcOp = getCalledFunction(callOp, symbolTable);
+ FuncOp funcOp = getCalledFunction(callOp, state.getSymbolTables());
272
assert(funcOp && "expected CallOp to a FuncOp");
273
FunctionType funcType = funcOp.getFunctionType();
274
0 commit comments