Skip to content

Commit

Permalink
fix print in AE
Browse files Browse the repository at this point in the history
  • Loading branch information
yuleisui committed May 15, 2024
1 parent 8027ceb commit b39e8ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions svf/lib/AE/Svfexe/AbstractInterpretation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1260,10 +1260,10 @@ void AbstractInterpretation::checkPointAllSet()
}
else
{
SVFUtil::errs() << SVFUtil::sucMsg("There exists checkpoints not checked!!\n");
SVFUtil::errs() << SVFUtil::errMsg("At least one svf_assert has not been checked!!") << "\n";
for (const CallICFGNode* call: _checkpoints)
{
SVFUtil::errs() << SVFUtil::sucMsg(call->toString() + "\n");
SVFUtil::errs() << call->toString() + "\n";
}
assert(false);
}
Expand Down

0 comments on commit b39e8ab

Please sign in to comment.