wip
[bigint-presentation-code.git] / register_allocator / src / state.rs
1 use crate::{function::Function, interned::GlobalState, live_range::LiveRange};
2
3 #[derive(Debug)]
4 pub struct AllocatorState<'a> {
5 global_state: &'a GlobalState,
6 func: &'a Function,
7 live_ranges: Vec<LiveRange>,
8 }