changeset 23018:31f1578ea3ab

TruffleCompilerThreads does not need to be a stable option, it is only accesed once during startup
author Christian Wimmer <christian.wimmer@oracle.com>
date Wed, 18 Nov 2015 11:52:05 -0800
parents a8bab192d632
children e3bcc6af1bcc
files graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java	Tue Nov 17 16:31:30 2015 -0800
+++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java	Wed Nov 18 11:52:05 2015 -0800
@@ -105,7 +105,7 @@
     public static final OptionValue<Boolean> TruffleBackgroundCompilation = new OptionValue<>(true);
 
     @Option(help = "Manually set the number of compiler threads", type = OptionType.Expert)
-    public static final OptionValue<Integer> TruffleCompilerThreads = new StableOptionValue<>(0);
+    public static final OptionValue<Integer> TruffleCompilerThreads = new OptionValue<>(0);
 
     @Option(help = "Enable inlining across Truffle boundary", type = OptionType.Expert)
     public static final OptionValue<Boolean> TruffleInlineAcrossTruffleBoundary = new OptionValue<>(false);