| 15 | |
| 16 | pub struct Memory { |
| 17 | pub(crate) width: usize, |
| 18 | } |
| 19 | |
| 20 | impl Memory { |
| 21 | pub(super) fn lookup_args(size: G, ptr: G, values: &[G]) -> Vec<G> { |
| 22 | let mut args = Vec::with_capacity(3 + values.len()); |
no outgoing calls
no test coverage detected