aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/TokenLexer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-19 20:29:42 +0000
committerChris Lattner <sabre@nondot.org>2009-04-19 20:29:42 +0000
commit332ee08e2fe78fde281e0868ec039b546cb6e0f4 (patch)
tree7f9edd49ac0a8e977449dcc1aa2dc01c67fc9587 /lib/Lex/TokenLexer.cpp
parentf22f77f4e9149499a987e2363a0be01d0bc2d426 (diff)
move token paste poisoning diagnostics to after the instantiation loc
for a token is set, this makes the diagnostic "expanded from stack" work for this diagnostic. Add a testcase for PR3918. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69544 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/TokenLexer.cpp')
-rw-r--r--lib/Lex/TokenLexer.cpp27
1 files changed, 16 insertions, 11 deletions
diff --git a/lib/Lex/TokenLexer.cpp b/lib/Lex/TokenLexer.cpp
index 8cec433221..7ff473f090 100644
--- a/lib/Lex/TokenLexer.cpp
+++ b/lib/Lex/TokenLexer.cpp
@@ -308,13 +308,18 @@ void TokenLexer::Lex(Token &Tok) {
// Get the next token to return.
Tok = Tokens[CurToken++];
+ bool TokenIsFromPaste = false;
+
// If this token is followed by a token paste (##) operator, paste the tokens!
if (!isAtEnd() && Tokens[CurToken].is(tok::hashhash))
if (PasteTokens(Tok)) {
// When handling the microsoft /##/ extension, the final token is
// returned by PasteTokens, not the pasted token.
return;
+ } else {
+ TokenIsFromPaste = true;
}
+
// The token's current location indicate where the token was lexed from. We
// need this information to compute the spelling of the token, but any
@@ -342,6 +347,17 @@ void TokenLexer::Lex(Token &Tok) {
// turning "for" into a keyword.
Tok.setKind(II->getTokenID());
+ // If this identifier was poisoned and from a paste, emit an error. This
+ // won't be handled by Preprocessor::HandleIdentifier because this is coming
+ // from a macro expansion.
+ if (II->isPoisoned() && TokenIsFromPaste) {
+ // We warn about __VA_ARGS__ with poisoning.
+ if (II->isStr("__VA_ARGS__"))
+ PP.Diag(Tok, diag::ext_pp_bad_vaargs_use);
+ else
+ PP.Diag(Tok, diag::err_pp_used_poisoned_id);
+ }
+
if (!DisableMacroExpansion && II->isHandleIdentifierCase())
PP.HandleIdentifier(Tok);
}
@@ -476,17 +492,6 @@ bool TokenLexer::PasteTokens(Token &Tok) {
// by saying we're skipping contents, so we need to do this manually.
IdentifierInfo *II = PP.LookUpIdentifierInfo(Tok, ResultTokStrPtr);
Tok.setIdentifierInfo(II);
-
- // If this identifier was poisoned, emit an error. This won't be handled by
- // Preprocessor::HandleIdentifier because this is coming from a macro
- // expansion.
- if (II->isPoisoned()) {
- // We warn about __VA_ARGS__ with poisoning.
- if (II->isStr("__VA_ARGS__"))
- PP.Diag(Tok, diag::ext_pp_bad_vaargs_use);
- else
- PP.Diag(Tok, diag::err_pp_used_poisoned_id);
- }
}
return false;
}