| 1344 | return (opcode & 0xfe000000) == 0xfe000000; |
| 1345 | } |
| 1346 | static inline bool is_opcode_redo(Opcode opcode) |
| 1347 | { |
| 1348 | return opcode == 0xfd000000; |
| 1349 | } |
| 1350 | static inline bool is_opcode_tail(Opcode opcode) |
| 1351 | { |
| 1352 | return (opcode & 0xff000000) == 0xfc000000; |
nothing calls this directly
no outgoing calls
no test coverage detected