From a8fdf96cdeb462eed7cbbb568271f9813f713f60 Mon Sep 17 00:00:00 2001 From: Julian Dolby Date: Thu, 26 Sep 2013 13:15:32 -0400 Subject: [PATCH] fix (i think) to edge computation caching --- .../src/com/ibm/wala/ipa/cfg/AbstractInterproceduralCFG.java | 1 + 1 file changed, 1 insertion(+) diff --git a/com.ibm.wala.core/src/com/ibm/wala/ipa/cfg/AbstractInterproceduralCFG.java b/com.ibm.wala.core/src/com/ibm/wala/ipa/cfg/AbstractInterproceduralCFG.java index c16e6bd25..b647a5019 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/ipa/cfg/AbstractInterproceduralCFG.java +++ b/com.ibm.wala.core/src/com/ibm/wala/ipa/cfg/AbstractInterproceduralCFG.java @@ -760,6 +760,7 @@ public abstract class AbstractInterproceduralCFG imple addIntraproceduralNodesAndEdgesForCGNodeIfNeeded(src.getNode()); } } + addedSuccs.add(getNumber(src)); return g.hasEdge(src, dst); }