id like for this to just take an ABI parameter but rust deprececated default generic arguments for functions :/
(ir: &mut IR)
| 730 | // id like for this to just take an ABI parameter but rust deprececated |
| 731 | // default generic arguments for functions :/ |
| 732 | pub fn function<const A: usize, const O: usize>(ir: &mut IR) -> NodeVariant::Function<A, O> { |
| 733 | NodeVariant::Function::new::<x86_64>(ir) |
| 734 | } |
| 735 | |
| 736 | pub fn leave() -> NodeVariant::Leave { |
| 737 | NodeVariant::Leave |
nothing calls this directly
no outgoing calls
no test coverage detected