diff options
author | Nico Weber <nicolasweber@gmx.de> | 2012-11-17 20:25:54 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2012-11-17 20:25:54 +0000 |
commit | 4e270380c150b3086875edd10e72f677b95f7e14 (patch) | |
tree | e66365d45289e164ff4547c3e1e54cbc3c8de9f5 /clang/lib/Lex/Lexer.cpp | |
parent | d41d09424487d386b780986a030d9915af4fdee1 (diff) | |
download | bcm5719-llvm-4e270380c150b3086875edd10e72f677b95f7e14.tar.gz bcm5719-llvm-4e270380c150b3086875edd10e72f677b95f7e14.zip |
Fix crash on end-of-file after \ in a char literal, fixes PR14369.
This makes LexCharConstant() look more like LexStringLiteral(), which doesn't
have this bug. Add tests for eof after \ for several other cases.
llvm-svn: 168269
Diffstat (limited to 'clang/lib/Lex/Lexer.cpp')
-rw-r--r-- | clang/lib/Lex/Lexer.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp index 354a44db84e..4698e288c03 100644 --- a/clang/lib/Lex/Lexer.cpp +++ b/clang/lib/Lex/Lexer.cpp @@ -1823,16 +1823,18 @@ void Lexer::LexCharConstant(Token &Result, const char *CurPtr, while (C != '\'') { // Skip escaped characters. - if (C == '\\') { - // Skip the escaped character. - getAndAdvanceChar(CurPtr, Result); - } else if (C == '\n' || C == '\r' || // Newline. - (C == 0 && CurPtr-1 == BufferEnd)) { // End of file. + if (C == '\\') + C = getAndAdvanceChar(CurPtr, Result); + + if (C == '\n' || C == '\r' || // Newline. + (C == 0 && CurPtr-1 == BufferEnd)) { // End of file. if (!isLexingRawMode() && !LangOpts.AsmPreprocessor) Diag(BufferPtr, diag::ext_unterminated_char); FormTokenWithChars(Result, CurPtr-1, tok::unknown); return; - } else if (C == 0) { + } + + if (C == 0) { if (isCodeCompletionPoint(CurPtr-1)) { PP->CodeCompleteNaturalLanguage(); FormTokenWithChars(Result, CurPtr-1, tok::unknown); |