| 56 | } |
| 57 | |
| 58 | constexpr bool IsInstructionConstWide(Instruction::Code opcode) { |
| 59 | return Instruction::CONST_WIDE_16 <= opcode && opcode <= Instruction::CONST_WIDE_HIGH16; |
| 60 | } |
| 61 | |
| 62 | constexpr bool IsInstructionReturn(Instruction::Code opcode) { |
| 63 | return Instruction::RETURN_VOID <= opcode && opcode <= Instruction::RETURN_OBJECT; |
nothing calls this directly
no outgoing calls
no test coverage detected