svf-lib 1.0.1690 → 1.0.1692
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
|
|
@@ -681,6 +681,7 @@ protected:
|
|
|
681
681
|
{
|
|
682
682
|
for (const auto &edge: node.node()->getOutEdges())
|
|
683
683
|
{
|
|
684
|
+
if(edge->getICFGEdge() && !edge->getICFGEdge()->isIntraCFGEdge()) continue;
|
|
684
685
|
const CFBasicBlockNode *succ = edge->getDstNode();
|
|
685
686
|
const CFBasicBlockGWTOCycleDepth &succNesting = getWTOCycleDepth(succ);
|
|
686
687
|
if (succ != _head && succNesting <= _headWTOCycleDepth)
|
|
@@ -772,6 +773,7 @@ protected:
|
|
|
772
773
|
{
|
|
773
774
|
for (auto it = node->getOutEdges().begin(), et = node->getOutEdges().end(); it != et; ++it)
|
|
774
775
|
{
|
|
776
|
+
if((*it)->getICFGEdge() && !(*it)->getICFGEdge()->isIntraCFGEdge()) continue;
|
|
775
777
|
const CFBasicBlockNode *succ = (*it)->getDstNode();
|
|
776
778
|
if (getCDN(succ) == 0)
|
|
777
779
|
{
|
|
@@ -818,6 +820,7 @@ protected:
|
|
|
818
820
|
{
|
|
819
821
|
for (auto it = node->getOutEdges().begin(), et = node->getOutEdges().end(); it != et; ++it)
|
|
820
822
|
{
|
|
823
|
+
if((*it)->getICFGEdge() && !(*it)->getICFGEdge()->isIntraCFGEdge()) continue;
|
|
821
824
|
const CFBasicBlockNode *succ = (*it)->getDstNode();
|
|
822
825
|
if (succ->getFunction() != node->getFunction())
|
|
823
826
|
continue;
|