Skip to content

Commit a60d125

Browse files
authored
Merge pull request #981 from seviezhou/patch-2
Fix a bug in wrapper detection
2 parents 6abb39b + 756cfd3 commit a60d125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

svf/lib/SABER/SrcSnkDDA.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ bool SrcSnkDDA::isInAWrapper(const SVFGNode* src, CallSiteSet& csIdSet)
169169
}
170170
else if(SVFUtil::isa<IntraIndSVFGEdge>(edge))
171171
{
172-
if(SVFUtil::isa<LoadSVFGNode>(succ))
172+
if(SVFUtil::isa<LoadSVFGNode, IntraMSSAPHISVFGNode>(succ))
173173
{
174174
worklist.push(succ);
175175
}

0 commit comments

Comments
 (0)