comparison graal/GraalCompiler/src/com/sun/c1x/ir/Local.java @ 2793:d3fc4fe063bf

Rename BlockBegin to Merge, remove some Block related member from it. Made CFGPrinter work with the Block class from schedule
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Fri, 27 May 2011 11:08:55 +0200
parents 9253df721472
children c3f64b66fc78
comparison
equal deleted inserted replaced
2792:2f3258e3800e 2793:d3fc4fe063bf
45 this.index = javaIndex; 45 this.index = javaIndex;
46 this.inputs().set(0, graph.start()); 46 this.inputs().set(0, graph.start());
47 } 47 }
48 48
49 @Override 49 @Override
50 public BlockBegin block() { 50 public Merge block() {
51 return null; 51 return null;
52 } 52 }
53 53
54 /** 54 /**
55 * Gets the index of this local. 55 * Gets the index of this local.