# HG changeset patch # User Josef Eisl # Date 1418762896 -3600 # Node ID ed8477e2561c201a06dd0716727bdbfd5da3348e # Parent 3d4e1284d39ebba1ec4ca3900485011b3c635f9b Reenable LocationMarker. diff -r 3d4e1284d39e -r ed8477e2561c graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LocationMarker.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LocationMarker.java Mon Dec 15 18:52:10 2014 +0100 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LocationMarker.java Tue Dec 16 21:48:16 2014 +0100 @@ -28,7 +28,6 @@ import com.oracle.graal.api.code.*; import com.oracle.graal.api.meta.*; -import com.oracle.graal.compiler.common.*; import com.oracle.graal.compiler.common.cfg.*; import com.oracle.graal.debug.*; import com.oracle.graal.lir.*; @@ -42,7 +41,7 @@ public static class Options { // @formatter:off @Option(help = "Use decoupled pass for location marking (instead of using LSRA marking)", type = OptionType.Debug) - public static final OptionValue UseLocationMarker = new OptionValue<>(false); + public static final OptionValue UseLocationMarker = new OptionValue<>(true); // @formatter:on }