mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00

* Assert everything is compiled in test_zjit * Update a comment on rb_zjit_assert_compiles Co-authored-by: Maxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com> * Add a comment about assert_compiles * Actually use pipe_fd --------- Co-authored-by: Maxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>
6 lines
170 B
Ruby
6 lines
170 B
Ruby
module RubyVM::ZJIT
|
|
# Assert that any future ZJIT compilation will return a function pointer
|
|
def self.assert_compiles
|
|
Primitive.rb_zjit_assert_compiles
|
|
end
|
|
end
|