diff options
author | Chris Lattner <sabre@nondot.org> | 2008-12-12 07:34:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-12-12 07:34:39 +0000 |
commit | e141a9e225e13b1cb6beb44fa25e18337096473c (patch) | |
tree | 8882608d410e47d909c87638ac25379cc879074a /clang/lib/Lex/Lexer.cpp | |
parent | ee99aa63cae08baf5c525cd7debe099f5af1607c (diff) | |
download | bcm5719-llvm-e141a9e225e13b1cb6beb44fa25e18337096473c.tar.gz bcm5719-llvm-e141a9e225e13b1cb6beb44fa25e18337096473c.zip |
rdar://6060752 - don't warn about trigraphs in bcpl-style comments
llvm-svn: 60942
Diffstat (limited to 'clang/lib/Lex/Lexer.cpp')
-rw-r--r-- | clang/lib/Lex/Lexer.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp index b071a7525f7..e6030ad1d45 100644 --- a/clang/lib/Lex/Lexer.cpp +++ b/clang/lib/Lex/Lexer.cpp @@ -777,9 +777,14 @@ bool Lexer::SkipBCPLComment(Token &Result, const char *CurPtr) { break; // Found the newline? Break out! // Otherwise, this is a hard case. Fall back on getAndAdvanceChar to - // properly decode the character. + // properly decode the character. Read it in raw mode to avoid emitting + // diagnostics about things like trigraphs. If we see an escaped newline, + // we'll handle it below. const char *OldPtr = CurPtr; + bool OldRawMode = isLexingRawMode(); + LexingRawMode = true; C = getAndAdvanceChar(CurPtr, Result); + LexingRawMode = OldRawMode; // If we read multiple characters, and one of those characters was a \r or // \n, then we had an escaped newline within the comment. Emit diagnostic |