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: 7c3173303b1b
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3f30d508a7e6
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on May 1, 2015

  1. Copy the full SHA
    3b20809 View commit details
  2. Copy the full SHA
    3f30d50 View commit details
Showing with 3 additions and 0 deletions.
  1. +1 −0 vm/builtin/jit.cpp
  2. +2 −0 vm/signal.cpp
1 change: 1 addition & 0 deletions vm/builtin/jit.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "builtin/block_environment.hpp"
#include "builtin/jit.hpp"
#include "builtin/list.hpp"
#include "configuration.hpp"

#include "ontology.hpp"

2 changes: 2 additions & 0 deletions vm/signal.cpp
Original file line number Diff line number Diff line change
@@ -109,7 +109,9 @@ namespace rubinius {
function("ruby version: %s", RBX_RUBY_VERSION);
function("release date: %s", RBX_RELEASE_DATE);
function("build revision: %s", RBX_BUILD_REV);
#if ENABLE_LLVM
function("llvm version: %s", RBX_LLVM_VERSION);
#endif
function("jit status: %s",
CBOOL(signal_thread_->shared().env()->state->globals().jit.get()->enabled())
? "enabled" : "disabled");