Home
last modified time | relevance | path

Searched refs:DefaultLabel (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.cpp140 OptLabelTy DefaultLabel) in SwitchScope() argument
142 OldDefaultLabel(this->Ctx->DefaultLabel), in SwitchScope()
145 this->Ctx->DefaultLabel = DefaultLabel; in SwitchScope()
151 this->Ctx->DefaultLabel = OldDefaultLabel; in ~SwitchScope()
4533 OptLabelTy DefaultLabel = std::nullopt; in visitSwitchStmt() local
4575 assert(!DefaultLabel); in visitSwitchStmt()
4576 DefaultLabel = this->getLabel(); in visitSwitchStmt()
4582 if (DefaultLabel) { in visitSwitchStmt()
4583 if (!this->jump(*DefaultLabel)) in visitSwitchStmt()
4590 SwitchScope<Emitter> SS(this, std::move(CaseLabels), EndLabel, DefaultLabel); in visitSwitchStmt()
[all …]
H A DCompiler.h399 OptLabelTy DefaultLabel; variable