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 d54a007 commit ed25cb7Copy full SHA for ed25cb7
mlir/lib/Analysis/DataFlow/SparseAnalysis.cpp
@@ -514,8 +514,8 @@ AbstractSparseBackwardDataFlowAnalysis::visitOperation(Operation *op) {
514
MutableArrayRef<OpOperand> argOpOperands =
515
operandsToOpOperands(argOperands);
516
Region *region = callable.getCallableRegion();
517
- bool isPublicFunc = isa<FunctionOpInterface>(callableOp)
518
- && cast<FunctionOpInterface>(callableOp).isPublic();
+ bool isPublicFunc = isa<FunctionOpInterface>(callableOp) &&
+ cast<FunctionOpInterface>(callableOp).isPublic();
519
if (!region || region->empty() ||
520
!getSolverConfig().isInterprocedural() || isPublicFunc) {
521
visitExternalCallImpl(call, operandLattices, resultLattices);
0 commit comments