# HG changeset patch # User Doug Simon # Date 1409760268 -7200 # Node ID 0bf917d4d0618c99bc134f54543867bc1ed539e6 # Parent df448ee8527988ddaec1c59d8241840dd26349b0 temporarily disable use of generated Nodes diff -r df448ee85279 -r 0bf917d4d061 graal/com.oracle.graal.graph/src/com/oracle/graal/graph/Node.java --- a/graal/com.oracle.graal.graph/src/com/oracle/graal/graph/Node.java Wed Sep 03 16:25:24 2014 +0200 +++ b/graal/com.oracle.graal.graph/src/com/oracle/graal/graph/Node.java Wed Sep 03 18:04:28 2014 +0200 @@ -55,7 +55,7 @@ @NodeInfo public abstract class Node implements Cloneable, Formattable { - public final static boolean USE_GENERATED_NODES = Boolean.parseBoolean(System.getProperty("graal.useGeneratedNodes", "true")); + public final static boolean USE_GENERATED_NODES = Boolean.parseBoolean(System.getProperty("graal.useGeneratedNodes", "false")); static final int DELETED_ID_START = -1000000000; static final int INITIAL_ID = -1;