File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/main/java/soot/toolkits/graph/pdg Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -197,8 +197,8 @@ protected void constructPDG() {
197
197
Block b = bItr .next ();
198
198
199
199
if (b .equals (a )) {
200
- //throw new RuntimeException("PDG construction: A and B are not supposed to be the same node!");
201
- continue ;
200
+ // throw new RuntimeException("PDG construction: A and B are not supposed to be the same node!");
201
+ continue ;
202
202
}
203
203
204
204
DominatorNode <Block > aDode = pdom .getDode (a );
@@ -431,15 +431,14 @@ protected void constructPDG() {
431
431
while (succItr .hasNext ()) {
432
432
PDGNode succRPDGNode = succItr .next ();
433
433
434
- // assert (succRPDGNode.getType() == PDGNode.Type.REGION);
434
+ // assert (succRPDGNode.getType() == PDGNode.Type.REGION);
435
435
Block h = null ;
436
436
if (succRPDGNode .getType () == PDGNode .Type .REGION ) {
437
437
Region succR = (Region ) succRPDGNode .getNode ();
438
438
h = succR .getBlocks ().get (0 );
439
439
} else {
440
440
continue ;
441
441
}
442
-
443
442
444
443
DominatorNode <Block > hdode = dom .getDode (h );
445
444
DominatorNode <Block > adode = dom .getDode (a );
You can’t perform that action at this time.
0 commit comments