Skip to content

Commit

Permalink
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/src/main/java/org/jruby/ir/IRScope.java
Original file line number Diff line number Diff line change
@@ -510,11 +510,11 @@ private synchronized Instr[] prepareInstructions() {
// Exit BB ipc
cfg().getExitBB().getLabel().setTargetPC(ipc + 1);

System.out.println("CFG.original");
System.out.println(cfg().toStringInstrs());
//System.out.println("CFG.original");
//System.out.println(cfg().toStringInstrs());

System.out.println("CFG.new");
System.out.println(cfg().clone(new SimpleCloneInfo(this, false), this).toStringInstrs());
//System.out.println("CFG.new");
//System.out.println(cfg().clone(new SimpleCloneInfo(this, false), this).toStringInstrs());

// Set up rescue map
setupRescueMap();

0 comments on commit 2d6bff1

Please sign in to comment.