(entry: &CmpCallData)
| 65 | } |
| 66 | |
| 67 | pub(crate) fn analyse_call_parameters(entry: &CmpCallData) -> (ArrayInfo, ArrayInfo) { |
| 68 | let a_kind = ArrayInfo::from_sequence(entry.values.iter().map(|(a, _)| a.as_slice())); |
| 69 | let b_kind = ArrayInfo::from_sequence(entry.values.iter().map(|(_, b)| b.as_slice())); |
| 70 | (a_kind, b_kind) |
| 71 | } |
| 72 | |
| 73 | pub(crate) fn add_interesting_call_cmps(entry: &CmpCallData, output: &mut Comparisons) { |
| 74 | if entry.has_invalid { |
no outgoing calls
no test coverage detected