| 1292 | } |
| 1293 | |
| 1294 | static void compileAddSub(Token *&tok, AST_state& state) |
| 1295 | { |
| 1296 | compileMulDiv(tok, state); |
| 1297 | while (tok) { |
| 1298 | if (Token::Match(tok, "+|-") && !tok->astOperand1()) { |
| 1299 | compileBinOp(tok, state, compileMulDiv); |
| 1300 | } else break; |
| 1301 | } |
| 1302 | } |
| 1303 | |
| 1304 | static void compileShift(Token *&tok, AST_state& state) |
| 1305 | { |
no test coverage detected