Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmt.cpp1266 CaseRangesTy CaseRanges; in ActOnFinishSwitchStmt() local
1322 CaseRanges.push_back(std::make_pair(LoVal, CS)); in ActOnFinishSwitchStmt()
1391 if (!CaseRanges.empty()) { in ActOnFinishSwitchStmt()
1394 llvm::stable_sort(CaseRanges); in ActOnFinishSwitchStmt()
1398 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { in ActOnFinishSwitchStmt()
1399 llvm::APSInt &LoVal = CaseRanges[i].first; in ActOnFinishSwitchStmt()
1400 CaseStmt *CR = CaseRanges[i].second; in ActOnFinishSwitchStmt()
1419 CaseRanges.erase(CaseRanges.begin()+i); in ActOnFinishSwitchStmt()
1436 for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) { in ActOnFinishSwitchStmt()
1437 llvm::APSInt &CRLo = CaseRanges[i].first; in ActOnFinishSwitchStmt()
[all …]