Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6d02ba7961b7
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8e934e841157
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jul 6, 2015

  1. Copy the full SHA
    8e934e8 View commit details
Showing with 0 additions and 8 deletions.
  1. +0 −7 core/src/main/java/org/jruby/RubyInstanceConfig.java
  2. +0 −1 core/src/main/java/org/jruby/util/cli/Options.java
7 changes: 0 additions & 7 deletions core/src/main/java/org/jruby/RubyInstanceConfig.java
Original file line number Diff line number Diff line change
@@ -1628,13 +1628,6 @@ public boolean shouldPrecompileAll() {
public static boolean FASTSEND_COMPILE_ENABLED
= FASTEST_COMPILE_ENABLED || Options.COMPILE_FASTSEND.load();

/**
* Enable lazy handles optimizations.
*
* Set with the <tt>jruby.compile.lazyHandles</tt> system property.
*/
public static boolean LAZYHANDLES_COMPILE = Options.COMPILE_LAZYHANDLES.load();

/**
* Enable fast multiple assignment optimization.
*
1 change: 0 additions & 1 deletion core/src/main/java/org/jruby/util/cli/Options.java
Original file line number Diff line number Diff line change
@@ -72,7 +72,6 @@ public class Options {
public static final Option<Boolean> COMPILE_THREADLESS = bool(COMPILER, "compile.threadless", false, "(EXPERIMENTAL) Turn on compilation without polling for \"unsafe\" thread events.");
public static final Option<Boolean> COMPILE_FASTOPS = bool(COMPILER, "compile.fastops", true, "Turn on fast operators for Fixnum and Float.");
public static final Option<Integer> COMPILE_CHAINSIZE = integer(COMPILER, "compile.chainsize", Constants.CHAINED_COMPILE_LINE_COUNT_DEFAULT, "Set the number of lines at which compiled bodies are \"chained\".");
public static final Option<Boolean> COMPILE_LAZYHANDLES = bool(COMPILER, "compile.lazyHandles", false, "Generate method bindings (handles) for compiled methods lazily.");
public static final Option<Boolean> COMPILE_PEEPHOLE = bool(COMPILER, "compile.peephole", true, "Enable or disable peephole optimizations.");
public static final Option<Boolean> COMPILE_NOGUARDS = bool(COMPILER, "compile.noguards", false, "Compile calls without guards, for experimentation.");
public static final Option<Boolean> COMPILE_FASTEST = bool(COMPILER, "compile.fastest", false, "Compile with all \"mostly harmless\" compiler optimizations.");