comparison graal/GraalCompiler/src/com/sun/c1x/ir/BlockClosure.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 4a6518c4d17d
children
comparison
equal deleted inserted replaced
2792:2f3258e3800e 2793:d3fc4fe063bf
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.sun.c1x.ir; 23 package com.sun.c1x.ir;
24 24
25 import com.oracle.max.graal.schedule.*;
26
25 /** 27 /**
26 * The {@code BlockClosure} interface represents a closure for iterating over blocks. 28 * The {@code BlockClosure} interface represents a closure for iterating over blocks.
27 */ 29 */
28 public interface BlockClosure { 30 public interface BlockClosure {
29 void apply(BlockBegin block); 31 void apply(Block block);
30 } 32 }