comparison graal/GraalCompiler/src/com/sun/c1x/ir/BlockClosure.java @ 2657:4a6518c4d17d

Removed need for base instruction. Cleanup.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 16:10:49 +0200
parents 16b9a8b5ad39
children d3fc4fe063bf
comparison
equal deleted inserted replaced
2656:37f067e76c6f 2657:4a6518c4d17d
22 */ 22 */
23 package com.sun.c1x.ir; 23 package com.sun.c1x.ir;
24 24
25 /** 25 /**
26 * The {@code BlockClosure} interface represents a closure for iterating over blocks. 26 * The {@code BlockClosure} interface represents a closure for iterating over blocks.
27 *
28 * @author Ben L. Titzer
29 */ 27 */
30 public interface BlockClosure { 28 public interface BlockClosure {
31 void apply(BlockBegin block); 29 void apply(BlockBegin block);
32 } 30 }