| 1364 | return (opcode << 8) >= (opcode & 0xff000000); |
| 1365 | } |
| 1366 | static inline bool is_opcode_meta(Opcode opcode) |
| 1367 | { |
| 1368 | return (opcode & 0x00ff0000) == 0x00000000 && (opcode >> 24) > 0; |
| 1369 | } |
| 1370 | static inline bool is_opcode_goto( |
| 1371 | Opcode opcode, |
| 1372 | unsigned char c) |
nothing calls this directly
no outgoing calls
no test coverage detected