svf-lib 1.0.1692 → 1.0.1693
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
|
|
@@ -686,6 +686,7 @@ protected:
|
|
|
686
686
|
{
|
|
687
687
|
for (const auto &edge: node.node()->getOutEdges())
|
|
688
688
|
{
|
|
689
|
+
if(edge->getICFGEdge() && !edge->getICFGEdge()->isIntraCFGEdge()) continue;
|
|
689
690
|
const CFBasicBlockNode *succ = edge->getDstNode();
|
|
690
691
|
const CFBasicBlockGWTOCycleDepth &succNesting = getWTOCycleDepth(succ);
|
|
691
692
|
if (succ != _head && succNesting <= _headWTOCycleDepth)
|
|
@@ -777,6 +778,7 @@ protected:
|
|
|
777
778
|
{
|
|
778
779
|
for (auto it = node->getOutEdges().begin(), et = node->getOutEdges().end(); it != et; ++it)
|
|
779
780
|
{
|
|
781
|
+
if((*it)->getICFGEdge() && !(*it)->getICFGEdge()->isIntraCFGEdge()) continue;
|
|
780
782
|
const CFBasicBlockNode *succ = (*it)->getDstNode();
|
|
781
783
|
if (getCDN(succ) == 0)
|
|
782
784
|
{
|
|
@@ -823,6 +825,7 @@ protected:
|
|
|
823
825
|
{
|
|
824
826
|
for (auto it = node->getOutEdges().begin(), et = node->getOutEdges().end(); it != et; ++it)
|
|
825
827
|
{
|
|
828
|
+
if((*it)->getICFGEdge() && !(*it)->getICFGEdge()->isIntraCFGEdge()) continue;
|
|
826
829
|
const CFBasicBlockNode *succ = (*it)->getDstNode();
|
|
827
830
|
if (succ->getFunction() != node->getFunction())
|
|
828
831
|
continue;
|