Searched refs:cycleStmt (Results 1 – 4 of 4) sorted by relevance
61 void Post(const parser::CycleStmt &cycleStmt) { in Post() argument62 if (const auto &cycleName{cycleStmt.v}) { in Post()
531 void Post(const parser::CycleStmt &cycleStmt) { in Post() argument532 if (cycleStmt.v) { in Post()533 CheckLabelContext("CYCLE", cycleStmt.v->source); in Post()
932 void DoForallChecker::Enter(const parser::CycleStmt &cycleStmt) { in Enter() argument933 CheckNesting(StmtType::CYCLE, common::GetPtrFromOptional(cycleStmt.v)); in Enter()
558 if (const auto *cycleStmt = bodyEval->getIf<parser::CycleStmt>()) { in rewriteIfGotos() local559 std::string cycleName = getConstructName(*cycleStmt); in rewriteIfGotos()