Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Parse/
H A DParseStmt.cpp1509 StmtResult ThenStmt; in ParseIfStatement() local
1522 ThenStmt = ParseStatement(&InnerStatementTrailingElseLoc); in ParseIfStatement()
1587 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) || in ParseIfStatement()
1588 (ThenStmt.isInvalid() && ElseStmt.get() == nullptr) || in ParseIfStatement()
1589 (ThenStmt.get() == nullptr && ElseStmt.isInvalid())) { in ParseIfStatement()
1601 if (!IsCompoundStatement(ThenStmt.get())) { in ParseIfStatement()
1614 if (ThenStmt.isInvalid()) in ParseIfStatement()
1615 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc); in ParseIfStatement()
1627 ThenStmt.get(), ElseLoc, ElseStmt.get()); in ParseIfStatement()