summaryrefslogtreecommitdiff
path: root/zjit/src/lib.rs
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2025-02-06 14:09:05 -0500
committerTakashi Kokubun <[email protected]>2025-04-18 21:52:56 +0900
commit00511bcc92c02384a481ffd78412a888811795de ()
tree86c8992448ba16cbd2b68d52ea1f6d61731e3c54 /zjit/src/lib.rs
parent750480d624f1dd78d2f4a4b2e7514613e3f6c2f5 (diff)
Put mod in the right place
Notes: Merged: https://.com/ruby/ruby/pull/13131
-rw-r--r--zjit/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,6 @@
#![allow(dead_code)]
mod codegen;
mod cruby;
mod ir;
@@ -13,7 +14,6 @@ use crate::cruby::*;
#[allow(non_upper_case_globals)]
#[no_mangle]
pub static mut rb_zjit_enabled_p: bool = false;
-mod asm;
#[no_mangle]
pub extern "C" fn rb_zjit_init() {