comparison graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/BytecodeParserTool.java @ 18163:c88ab4f1f04a

re-enabled Checkstyle with the release of 6.0 that supports Java 8; fixed existing Checkstyle warnings
author Doug Simon <doug.simon@oracle.com>
date Fri, 24 Oct 2014 16:18:10 +0200
parents 93de07975ea9
children 48c1ebd24120
comparison
equal deleted inserted replaced
18162:ab62800259ff 18163:c88ab4f1f04a
23 package com.oracle.graal.compiler.gen; 23 package com.oracle.graal.compiler.gen;
24 24
25 import com.oracle.graal.api.meta.*; 25 import com.oracle.graal.api.meta.*;
26 26
27 /** 27 /**
28 * visible interface of bytecode parsers 28 * visible interface of bytecode parsers.
29 */ 29 */
30 public interface BytecodeParserTool { 30 public interface BytecodeParserTool {
31 31
32 void storeLocal(int i, Value x); 32 void storeLocal(int i, Value x);
33 33