comparison graal/com.oracle.graal.graph/src/com/oracle/graal/graph/Node.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 45b45f902bed
children 3aaf2747961c
comparison
equal deleted inserted replaced
18162:ab62800259ff 18163:c88ab4f1f04a
57 * only performed if assertions are enabled. 57 * only performed if assertions are enabled.
58 */ 58 */
59 @NodeInfo 59 @NodeInfo
60 public abstract class Node implements Cloneable, Formattable { 60 public abstract class Node implements Cloneable, Formattable {
61 61
62 public final static boolean USE_UNSAFE_TO_CLONE = Boolean.parseBoolean(System.getProperty("graal.node.useUnsafeToClone", "true")); 62 public static final boolean USE_UNSAFE_TO_CLONE = Boolean.parseBoolean(System.getProperty("graal.node.useUnsafeToClone", "true"));
63 63
64 static final int DELETED_ID_START = -1000000000; 64 static final int DELETED_ID_START = -1000000000;
65 static final int INITIAL_ID = -1; 65 static final int INITIAL_ID = -1;
66 static final int ALIVE_ID_START = 0; 66 static final int ALIVE_ID_START = 0;
67 67