Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1368 CaseRangesTy CaseRanges; in ActOnFinishSwitchStmt() local
1427 CaseRanges.push_back(std::make_pair(LoVal, CS)); in ActOnFinishSwitchStmt()
1497 if (!CaseRanges.empty()) { in ActOnFinishSwitchStmt()
1500 llvm::stable_sort(CaseRanges); in ActOnFinishSwitchStmt()
1504 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { in ActOnFinishSwitchStmt()
1505 llvm::APSInt &LoVal = CaseRanges[i].first; in ActOnFinishSwitchStmt()
1506 CaseStmt *CR = CaseRanges[i].second; in ActOnFinishSwitchStmt()
1525 CaseRanges.erase(CaseRanges.begin()+i); in ActOnFinishSwitchStmt()
1542 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { in ActOnFinishSwitchStmt()
1543 llvm::APSInt &CRLo = CaseRanges[i].first; in ActOnFinishSwitchStmt()
[all …]