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: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0aab1fba56e3
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f3961c4e6c4b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 19, 2015

  1. Fix typos in -Xhelp output

    [ci skip]
    John Muhl committed Jan 19, 2015
    Copy the full SHA
    fef87a7 View commit details
  2. Merge pull request #3287 from johnmuhl/fix-xhelp-typos

    Fix typos in -Xhelp output
    jemc committed Jan 19, 2015
    Copy the full SHA
    f3961c4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 library/rubinius/configuration.rb
6 changes: 3 additions & 3 deletions library/rubinius/configuration.rb
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@
"Control whether or not GC.start is honored when called"

s.vm_variable "autopack", true,
"Set whether or not objects should be backed tightly in memory"
"Set whether or not objects should be packed tightly in memory"

s.vm_variable "marksweep_threshold", (10 * 1024 * 1024),
"The number of bytes allocated before the marksweep GC region is collected"
@@ -95,13 +95,13 @@
:description => "Print out a status message when the JIT is operating"

s.vm_variable "profile", false,
"The JIT will emit code to be sure JITd methods can be profile"
"The JIT will emit code to be sure JITd methods can be profiled"

s.section "inline" do |i|
i.vm_variable "generic", true, "Have the JIT inline generic methods"

i.vm_variable "blocks", true,
"Have the JIT try and inline methods and their literal blocks"
"Have the JIT try to inline methods and their literal blocks"

i.vm_variable "debug", false,
"Have the JIT print out information about inlining"