| 272 | //----------------------------------------------------------------------------- |
| 273 | |
| 274 | auto* mkLabelDecl(std::string_view name) |
| 275 | { |
| 276 | auto& ctx = GetGlobalAST(); |
| 277 | |
| 278 | return LabelDecl::Create(const_cast<ASTContext&>(ctx), ctx.getTranslationUnitDecl(), {}, &ctx.Idents.get(name)); |
| 279 | } |
| 280 | //----------------------------------------------------------------------------- |
| 281 | |
| 282 | LabelStmt* Label(std::string_view name) |