summaryrefslogtreecommitdiff
path: root/lib/ruby_vm/mjit/block.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ruby_vm/mjit/block.rb')
-rw-r--r--lib/ruby_vm/mjit/block.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ruby_vm/mjit/block.rb b/lib/ruby_vm/mjit/block.rb
index 58c21c9c2a..238896d9ce 100644
--- a/lib/ruby_vm/mjit/block.rb
+++ b/lib/ruby_vm/mjit/block.rb
@@ -1,5 +1,6 @@
class RubyVM::MJIT::Block < Struct.new(
:pc, # @param [Integer] Starting PC
+ :ctx, # @param [RubyVM::MJIT::Context] **Starting** Context (TODO: freeze?)
:start_addr, # @param [Integer] Starting address of this block's JIT code
:entry_exit, # @param [Integer] Address of entry exit (optional)
)