| 636 | } |
| 637 | |
| 638 | static unsigned parse_exact() { |
| 639 | if (tokenizer.consumeIf(EXACT)) |
| 640 | return BinOp::Exact; |
| 641 | return BinOp::None; |
| 642 | } |
| 643 | |
| 644 | static FastMathFlags parse_fast_math(token op_token) { |
| 645 | FastMathFlags fmath; |
no test coverage detected