Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-directive-structure.h61 void Post(const parser::CycleStmt &cycleStmt) { in Post() argument
62 if (const auto &cycleName{cycleStmt.v}) { in Post()
H A Dresolve-labels.cpp531 void Post(const parser::CycleStmt &cycleStmt) { in Post() argument
532 if (cycleStmt.v) { in Post()
533 CheckLabelContext("CYCLE", cycleStmt.v->source); in Post()
H A Dcheck-do-forall.cpp932 void DoForallChecker::Enter(const parser::CycleStmt &cycleStmt) { in Enter() argument
933 CheckNesting(StmtType::CYCLE, common::GetPtrFromOptional(cycleStmt.v)); in Enter()
/llvm-project-15.0.7/flang/lib/Lower/
H A DPFTBuilder.cpp558 if (const auto *cycleStmt = bodyEval->getIf<parser::CycleStmt>()) { in rewriteIfGotos() local
559 std::string cycleName = getConstructName(*cycleStmt); in rewriteIfGotos()