changeset 17041:0bf917d4d061

temporarily disable use of generated Nodes
author Doug Simon <doug.simon@oracle.com>
date Wed, 03 Sep 2014 18:04:28 +0200
parents df448ee85279
children 9fe9d32e00b5
files graal/com.oracle.graal.graph/src/com/oracle/graal/graph/Node.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;