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.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ruby_vm/mjit/block.rb b/lib/ruby_vm/mjit/block.rb
index 238896d9ce..efa8bff1b3 100644
--- a/lib/ruby_vm/mjit/block.rb
+++ b/lib/ruby_vm/mjit/block.rb
@@ -3,5 +3,7 @@ class RubyVM::MJIT::Block < Struct.new(
: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)
+ :incoming, # @param [Array<RubyVM::MJIT::BranchStub>] Incoming branches
)
+ def initialize(incoming: [], **) = super
end