comparison graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/target/LIRGenLowerable.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents dec5a35ddbe2
children 47e4d2e01c6e
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
25 import com.oracle.graal.compiler.gen.*; 25 import com.oracle.graal.compiler.gen.*;
26 import com.oracle.graal.lir.*; 26 import com.oracle.graal.lir.*;
27 import com.oracle.graal.nodes.spi.*; 27 import com.oracle.graal.nodes.spi.*;
28 28
29 /** 29 /**
30 * An alternative to {@link LIRLowerable} for lowering that is tightly coupled 30 * An alternative to {@link LIRLowerable} for lowering that is tightly coupled to
31 * to {@link LIRGenerator} and {@link LIRInstruction}. 31 * {@link LIRGenerator} and {@link LIRInstruction}.
32 */ 32 */
33 public interface LIRGenLowerable { 33 public interface LIRGenLowerable {
34 34
35 void generate(LIRGenerator generator); 35 void generate(LIRGenerator generator);
36 } 36 }