(a: u64, b: u64)
| 15 | |
| 16 | #[no_mangle] |
| 17 | pub extern "C" fn add_u64(a: u64, b: u64) -> u64 { |
| 18 | a + b |
| 19 | } |
| 20 | |
| 21 | #[no_mangle] |
| 22 | pub extern "C" fn add_f32(a: f32, b: f32) -> f32 { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…