| 1322 | } |
| 1323 | |
| 1324 | static void compileRelComp(Token *&tok, AST_state& state) |
| 1325 | { |
| 1326 | compileThreewayComp(tok, state); |
| 1327 | while (tok) { |
| 1328 | if (Token::Match(tok, "<|<=|>=|>") && !tok->link()) { |
| 1329 | compileBinOp(tok, state, compileThreewayComp); |
| 1330 | } else break; |
| 1331 | } |
| 1332 | } |
| 1333 | |
| 1334 | static void compileEqComp(Token *&tok, AST_state& state) |
| 1335 | { |
no test coverage detected