diff options
author | Takashi Kokubun <[email protected]> | 2025-02-10 17:12:31 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2025-04-18 21:52:57 +0900 |
commit | 9c267256d896125a2aea4be8609ec415ff7760ef () | |
tree | 8748691ef4902c78ed17b98033116a9f1aa518ce /zjit/src/lib.rs | |
parent | e28ab5480e457b54681b4b23b1081a62aec8cb16 (diff) |
Stub YJIT-specific implementations in the backend
Notes: Merged: https://.com/ruby/ruby/pull/13131
-rw-r--r-- | zjit/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -12,7 +12,6 @@ mod backend; mod disasm; mod options; -use backend::x86_emit; use codegen::ZJITState; use options::get_option; use crate::cruby::*; @@ -80,7 +79,7 @@ pub extern "C" fn rb_zjit_iseq_gen_entry_point(iseq: IseqPtr, _ec: EcPtr) -> *co let cb = ZJITState::get_code_block(); let start_ptr = cb.get_write_ptr(); - x86_emit(cb); #[cfg(feature = "disasm")] if get_option!(dump_disasm) { |