Skip to content

Commit ed25cb7

Browse files
committed
Fix formatter error.
1 parent d54a007 commit ed25cb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Analysis/DataFlow/SparseAnalysis.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,8 +514,8 @@ AbstractSparseBackwardDataFlowAnalysis::visitOperation(Operation *op) {
514514
MutableArrayRef<OpOperand> argOpOperands =
515515
operandsToOpOperands(argOperands);
516516
Region *region = callable.getCallableRegion();
517-
bool isPublicFunc = isa<FunctionOpInterface>(callableOp)
518-
&& cast<FunctionOpInterface>(callableOp).isPublic();
517+
bool isPublicFunc = isa<FunctionOpInterface>(callableOp) &&
518+
cast<FunctionOpInterface>(callableOp).isPublic();
519519
if (!region || region->empty() ||
520520
!getSolverConfig().isInterprocedural() || isPublicFunc) {
521521
visitExternalCallImpl(call, operandLattices, resultLattices);

0 commit comments

Comments
 (0)