reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2011 PP.Lex(Tok); 2012 if (Tok.isNot(tok::identifier)) { 2013 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) << "weak"; 2017 Token WeakName = Tok; 2021 PP.Lex(Tok); 2022 if (Tok.is(tok::equal)) { 2024 PP.Lex(Tok); 2025 if (Tok.isNot(tok::identifier)) { 2026 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier) 2030 AliasName = Tok; 2031 PP.Lex(Tok); 2034 if (Tok.isNot(tok::eod)) { 2035 PP.Diag(Tok.getLocation(), diag::warn_pragma_extra_tokens_at_eol) << "weak";