diff options
author | Takashi Kokubun <[email protected]> | 2025-02-06 14:21:13 -0500 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2025-04-18 21:52:56 +0900 |
commit | d7dbaf04fab43d75d6e77ee45a77567cfdc831ed () | |
tree | 39977ab25b9e975d751d8d186f50527b31b7484b /zjit/src/lib.rs | |
parent | 9ddce45c7df7d198b5089042ea8be5717f3eef00 (diff) |
Get CodeBlock
Notes: Merged: https://.com/ruby/ruby/pull/13131
-rw-r--r-- | zjit/src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,4 +1,5 @@ #![allow(dead_code)] mod codegen; mod cruby; @@ -76,5 +77,9 @@ pub extern "C" fn rb_zjit_parse_option() -> bool { #[no_mangle] pub extern "C" fn rb_zjit_iseq_gen_entry_point(iseq: IseqPtr, _ec: EcPtr) -> *const u8 { ir::iseq_to_ssa(iseq); std::ptr::null() } |