Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1598 StmtResult ThenStmt; in ParseIfStatement() local
1611 ThenStmt = ParseStatement(&InnerStatementTrailingElseLoc); in ParseIfStatement()
1676 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) || in ParseIfStatement()
1677 (ThenStmt.isInvalid() && ElseStmt.get() == nullptr) || in ParseIfStatement()
1678 (ThenStmt.get() == nullptr && ElseStmt.isInvalid())) { in ParseIfStatement()
1690 if (!IsCompoundStatement(ThenStmt.get())) { in ParseIfStatement()
1703 if (ThenStmt.isInvalid()) in ParseIfStatement()
1704 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc); in ParseIfStatement()
1716 ThenStmt.get(), ElseLoc, ElseStmt.get()); in ParseIfStatement()