changeset 10927:2556046ca25a

Backed out changeset dae97549a94d (disable new memory aware scheduling)
author Bernhard Urban <bernhard.urban@jku.at>
date Thu, 01 Aug 2013 21:25:37 +0200
parents dae97549a94d
children acc261dc165e c6e004578eb4
files graal/com.oracle.graal.phases/src/com/oracle/graal/phases/GraalOptions.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/GraalOptions.java	Thu Aug 01 19:15:54 2013 +0200
+++ b/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/GraalOptions.java	Thu Aug 01 21:25:37 2013 +0200
@@ -232,9 +232,9 @@
     public static final OptionValue<Boolean> CanOmitFrame = new OptionValue<>(true);
 
     @Option(help = "")
-    public static final OptionValue<Boolean> MemoryAwareScheduling = new OptionValue<>(false);
+    public static final OptionValue<Boolean> MemoryAwareScheduling = new OptionValue<>(true);
     @Option(help = "")
-    public static final OptionValue<Boolean> NewMemoryAwareScheduling = new OptionValue<>(true);
+    public static final OptionValue<Boolean> NewMemoryAwareScheduling = new OptionValue<>(false);
 
     // Translating tableswitch instructions
     @Option(help = "")