some more --debug=analyze messages

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1004 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 320c5ad2c9
commit 2f70d84fbb
  1. 10
      jode/jode/flow/FlowBlock.java

@ -1236,7 +1236,8 @@ public class FlowBlock {
/* the Block has no successor where T2 is applicable. /* the Block has no successor where T2 is applicable.
* Finish this analyzation. * Finish this analyzation.
*/ */
if ((GlobalOptions.debuggingFlags & GlobalOptions.DEBUG_ANALYZE) != 0) if ((GlobalOptions.debuggingFlags
& GlobalOptions.DEBUG_ANALYZE) != 0)
GlobalOptions.err.println GlobalOptions.err.println
("No more successors applicable: " ("No more successors applicable: "
+ start + " - " + end + "; " + start + " - " + end + "; "
@ -1250,8 +1251,13 @@ public class FlowBlock {
/* T2 transformation succeeded. */ /* T2 transformation succeeded. */
changed = true; changed = true;
if ((GlobalOptions.debuggingFlags & GlobalOptions.DEBUG_FLOW) != 0) if ((GlobalOptions.debuggingFlags
& GlobalOptions.DEBUG_FLOW) != 0)
GlobalOptions.err.println("after T2: "+this); GlobalOptions.err.println("after T2: "+this);
if ((GlobalOptions.debuggingFlags
& GlobalOptions.DEBUG_ANALYZE) != 0)
GlobalOptions.err.println
("T2("+addr+","+getNextAddr()+") succeeded");
break; break;
} }

Loading…
Cancel
Save