svf-lib 1.0.1687 → 1.0.1688
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
|
@@ -819,6 +819,8 @@ protected:
|
|
|
819
819
|
for (auto it = node->getOutEdges().begin(), et = node->getOutEdges().end(); it != et; ++it)
|
|
820
820
|
{
|
|
821
821
|
const CFBasicBlockNode *succ = (*it)->getDstNode();
|
|
822
|
+
if (succ->getFunction() != node->getFunction())
|
|
823
|
+
continue;
|
|
822
824
|
CycleDepthNumber succ_dfn = getCDN(succ);
|
|
823
825
|
if (succ_dfn == CycleDepthNumber(0))
|
|
824
826
|
{
|