(instr: Instruction, op_instr: Instruction)
| 670 | } |
| 671 | |
| 672 | fn const_128(instr: Instruction, op_instr: Instruction) -> Option<ConstIdx> { |
| 673 | match instr { |
| 674 | Instruction::Const128(c) if bin_op_128(op_instr).is_some() => Some(c), |
| 675 | _ => None, |
| 676 | } |
| 677 | } |
| 678 | |
| 679 | define_local_source_resolver!( |
| 680 | resolve_local_source_32, |
nothing calls this directly
no test coverage detected