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.h2397 SwitchCase *FirstCase = nullptr;
2530 SwitchCase *getSwitchCaseList() { return FirstCase; }
2531 const SwitchCase *getSwitchCaseList() const { return FirstCase; }
2532 void setSwitchCaseList(SwitchCase *SC) { FirstCase = SC; }
2549 SC->setNextSwitchCase(FirstCase);
2550 FirstCase = SC;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp309 auto FirstCase = *SI->case_begin(); in ConstantFoldTerminator() local
311 FirstCase.getCaseValue(), "cond"); in ConstantFoldTerminator()
315 FirstCase.getCaseSuccessor(), in ConstantFoldTerminator()
H A DSimplifyCFG.cpp6067 ConstantInt *FirstCase = ResultVector[0].second[0]; in foldSwitchToSelect() local
6077 Builder.CreateICmpEQ(Condition, FirstCase, "switch.selectcmp"); in foldSwitchToSelect()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1056 : Stmt(SwitchStmtClass), FirstCase(nullptr), LParenLoc(LParenLoc), in SwitchStmt()