Home
last modified time | relevance | path

Searched refs:FirstCase (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2516 SwitchCase *FirstCase = nullptr;
2643 SwitchCase *getSwitchCaseList() { return FirstCase; }
2644 const SwitchCase *getSwitchCaseList() const { return FirstCase; }
2645 void setSwitchCaseList(SwitchCase *SC) { FirstCase = SC; }
2662 SC->setNextSwitchCase(FirstCase);
2663 FirstCase = SC;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp311 auto FirstCase = *SI->case_begin(); in ConstantFoldTerminator() local
313 FirstCase.getCaseValue(), "cond"); in ConstantFoldTerminator()
317 FirstCase.getCaseSuccessor(), in ConstantFoldTerminator()
H A DSimplifyCFG.cpp6212 ConstantInt *FirstCase = ResultVector[0].second[0]; in foldSwitchToSelect() local
6222 Builder.CreateICmpEQ(Condition, FirstCase, "switch.selectcmp"); in foldSwitchToSelect()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1100 : Stmt(SwitchStmtClass), FirstCase(nullptr), LParenLoc(LParenLoc), in SwitchStmt()