diff options
author | Takashi Kokubun <[email protected]> | 2025-02-11 15:10:10 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2025-04-18 21:52:57 +0900 |
commit | 7447513509bf5e6c7770ed09838a844486c29b8b () | |
tree | 5bff973c91c40044c1265255a7e396d79f941cf5 /zjit/src/lib.rs | |
parent | 05c451343f4c3ff5185146a6d8911b9be5310fde (diff) |
Rename codegen.rs to state.rs
since it's only about ZJITState at the moment. Because it's no longer called "CodegenGlobals", we don't have any reason to keep it in codegen.rs.
Notes: Merged: https://.com/ruby/ruby/pull/13131
-rw-r--r-- | zjit/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #![allow(dead_code)] #![allow(static_mut_refs)] -mod codegen; mod cruby; mod ir; mod stats; @@ -12,7 +12,7 @@ mod backend; mod disasm; mod options; -use codegen::ZJITState; #[cfg(feature = "disasm")] use options::get_option; use crate::cruby::*; |