| 824 | } |
| 825 | |
| 826 | void RawAddStatement(Function* F, std::stringstream &ss) { |
| 827 | AstStatement* stmt = MakeSimpleStatement(ss.str()); |
| 828 | stmt->line = F->pc; |
| 829 | RawAddAstStatement(F, stmt); |
| 830 | } |
| 831 | |
| 832 | void FlushWhile1(Function* F) { |
| 833 | LoopItem* walk = F->loop_ptr; |
no test coverage detected