| 1305 | return c > META_MIN; |
| 1306 | } |
| 1307 | static inline Opcode opcode_long(Index index) |
| 1308 | { |
| 1309 | return 0xff000000 | (index & 0xffffff); // index <= Const::GMAX (0xfeffff max) |
| 1310 | } |
| 1311 | static inline Opcode opcode_take(Index index) |
| 1312 | { |
| 1313 | return 0xfe000000 | (index & 0xffffff); // index <= Const::AMAX (0xfdffff max) |
nothing calls this directly
no outgoing calls
no test coverage detected