(instr: Instruction)
| 652 | } |
| 653 | |
| 654 | fn scalar_bin_op_64(instr: Instruction) -> Option<BinOp> { |
| 655 | int_bin_op_64(instr).or_else(|| float_bin_op_64(instr)) |
| 656 | } |
| 657 | |
| 658 | fn scalar_const_32(instr: Instruction, op_instr: Instruction) -> Option<i32> { |
| 659 | match instr { |
nothing calls this directly
no test coverage detected