| 286 | //----------------------------------------------------------------------------- |
| 287 | |
| 288 | CompoundStmt* mkCompoundStmt(ArrayRef<Stmt*> bodyStmts, SourceLocation beginLoc, SourceLocation endLoc) |
| 289 | { |
| 290 | return CompoundStmt::Create(GetGlobalAST(), bodyStmts, FPOptionsOverride{}, beginLoc, endLoc); |
| 291 | } |
| 292 | //----------------------------------------------------------------------------- |
| 293 | |
| 294 | IfStmt* If(const Expr* condition, ArrayRef<Stmt*> bodyStmts) |
no outgoing calls
no test coverage detected