aboutsummaryrefslogtreecommitdiffstats
path: root/yjit/src/lib.rs
blob: e92186da7de5c433a8b784ea3b19708b80ab5eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Clippy disagreements
#![allow(clippy::style)] // We are laid back about style
#![allow(clippy::too_many_arguments)] // :shrug:
#![allow(clippy::identity_op)] // Sometimes we do it for style


// Temporary while switching to the new backend
#![allow(dead_code)]
#![allow(unused)]



mod asm;
mod backend;
mod codegen;
mod core;
mod cruby;
mod disasm;
mod invariants;
mod options;
mod stats;
mod utils;
mod yjit;
mod virtualmem;