(instr: Instruction, op_instr: Instruction)
| 663 | } |
| 664 | |
| 665 | fn scalar_const_64(instr: Instruction, op_instr: Instruction) -> Option<i64> { |
| 666 | match instr { |
| 667 | Instruction::Const64(c) if int_bin_op_64(op_instr).is_some() || float_bin_op_64(op_instr).is_some() => Some(c), |
| 668 | _ => None, |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | fn const_128(instr: Instruction, op_instr: Instruction) -> Option<ConstIdx> { |
| 673 | match instr { |
nothing calls this directly
no test coverage detected