diff options
author | Takashi Kokubun <[email protected]> | 2023-12-21 16:18:30 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-12-21 16:47:13 -0800 |
commit | 3c182776292ecd2a28fea4f7de87a89e64459f9c (patch) | |
tree | 6ded96427bcda02ce272e43f248071450c860220 /rjit.rb | |
parent | 18a97affa349b5edbc4829063b752aab1911fa55 (diff) |
RJIT: Clean up unnecessary documentation
Diffstat (limited to 'rjit.rb')
-rw-r--r-- | rjit.rb | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ module RubyVM::RJIT - # Return true if RJIT is enabled. + # Return true if \RJIT is enabled. def self.enabled? Primitive.cexpr! 'RBOOL(rb_rjit_enabled)' end - # Start generating JITed code again after --rjit-disable. + # Start JIT compilation after \--rjit-disable. def self.enable Primitive.cstmt! %{ rb_rjit_call_p = true; |