comparison graal/GraalCompiler/src/com/sun/c1x/ir/BlockBegin.java @ 2719:ae1c50a03297

Fixed regression.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 16:26:32 +0200
parents c1ce2a53d6c3
children 23d0bcfa3c84
comparison
equal deleted inserted replaced
2718:c1ce2a53d6c3 2719:ae1c50a03297
689 closure.apply(((ExceptionEdgeInstruction) x).exceptionEdge()); 689 closure.apply(((ExceptionEdgeInstruction) x).exceptionEdge());
690 } 690 }
691 } 691 }
692 } 692 }
693 693
694 public void verifyPredecessors() {
695 for (int i = 0; i < numberOfPreds(); i++) {
696 predAt(i);
697 }
698
699 }
700
701 694
702 } 695 }