Skip to content

Commit

Permalink
Merge pull request #1601 from jumormt/12.4fix
Browse files Browse the repository at this point in the history
fix using getvalue when dumping constraintgraph
  • Loading branch information
yuleisui authored Dec 4, 2024
2 parents 07d6570 + 8b08250 commit 1464994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svf/lib/Graphs/ConsG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ struct DOTGraphTraits<ConstraintGraph*> : public DOTGraphTraits<SVFIR*>
{
// print the whole value
if (!SVFUtil::isa<DummyValVar>(node) && !SVFUtil::isa<DummyObjVar>(node))
rawstr << node->getId() << ":" << node->getValue()->toString();
rawstr << node->toString();
else
rawstr << node->getId() << ":";

Expand Down

0 comments on commit 1464994

Please sign in to comment.