| 1302 | } |
| 1303 | |
| 1304 | static void compileShift(Token *&tok, AST_state& state) |
| 1305 | { |
| 1306 | compileAddSub(tok, state); |
| 1307 | while (tok) { |
| 1308 | if (Token::Match(tok, "<<|>>")) { |
| 1309 | compileBinOp(tok, state, compileAddSub); |
| 1310 | } else break; |
| 1311 | } |
| 1312 | } |
| 1313 | |
| 1314 | static void compileThreewayComp(Token *&tok, AST_state& state) |
| 1315 | { |
no test coverage detected