Skip to content

Commit 756cfd3

Browse files
authored
Fix a bug in wrapper detection
More details please see issue #980
1 parent 6abb39b commit 756cfd3

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)