| 123 | }; |
| 124 | |
| 125 | const char *get_shift(ShiftType shift) |
| 126 | { |
| 127 | if (shift <= ShiftType_NONE || shift >= ShiftType_END) |
| 128 | return NULL; |
| 129 | |
| 130 | return ShiftString[shift]; |
| 131 | } |
| 132 | |
| 133 | //----------------------------------------------------------------------------- |
| 134 | // operand processing helpers |
no outgoing calls
no test coverage detected