Small bug fix

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1417 379699f6-c40d-0410-875b-85095c16579e
master
hoenicke 11 years ago
parent 7a96e31c81
commit 33504d1840
  1. 5
      jode/src/net/sf/jode/flow/FlowBlock.java

@ -265,6 +265,9 @@ public class FlowBlock {
cb.setInstruction(instr.negate());
cb.swapJump(prev);
/* Update lastModified if it happened to be the conditional jump */
if (lastModified == prev)
lastModified = jump.prev;
}
}
while (jumps != null) {
@ -1375,7 +1378,7 @@ public class FlowBlock {
}
/**
* The main analyzation. This calls doT1 and doT2 on apropriate
* The main analysis. This calls doT1 and doT2 on appropriate
* regions. Only blocks whose block number lies in the given block number
* range are considered.
* @param start the start of the block number range.

Loading…
Cancel
Save