Searched refs:C99orCXX (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseStmt.cpp | 1536 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; in ParseIfStatement() local 1550 ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX); in ParseIfStatement() 1590 ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, IsBracedThen); in ParseIfStatement() 1641 ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, in ParseIfStatement() 1733 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; in ParseSwitchStatement() local 1748 if (C99orCXX) in ParseSwitchStatement() 1789 ParseScope InnerScope(this, Scope::DeclScope, C99orCXX, Tok.is(tok::l_brace)); in ParseSwitchStatement() 1793 if (C99orCXX) in ParseSwitchStatement() 1821 bool C99orCXX = getLangOpts().C99 || getLangOpts().CPlusPlus; in ParseWhileStatement() local 1836 if (C99orCXX) in ParseWhileStatement() [all …]
|