Skip to content

Commit

Permalink
Merge pull request #981 from seviezhou/patch-2
Browse files Browse the repository at this point in the history
Fix a bug in wrapper detection
  • Loading branch information
yuleisui authored Dec 30, 2022
2 parents 6abb39b + 756cfd3 commit a60d125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svf/lib/SABER/SrcSnkDDA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ bool SrcSnkDDA::isInAWrapper(const SVFGNode* src, CallSiteSet& csIdSet)
}
else if(SVFUtil::isa<IntraIndSVFGEdge>(edge))
{
if(SVFUtil::isa<LoadSVFGNode>(succ))
if(SVFUtil::isa<LoadSVFGNode, IntraMSSAPHISVFGNode>(succ))
{
worklist.push(succ);
}
Expand Down

0 comments on commit a60d125

Please sign in to comment.