Author: lattner
Date: Mon Aug 30 18:11:03 2010
New Revision: 112549

URL: http://llvm.org/viewvc/llvm-project?rev=112549&view=rev
Log:
silence a warning

Modified:
    cfe/trunk/lib/Lex/Lexer.cpp

Modified: cfe/trunk/lib/Lex/Lexer.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/Lexer.cpp?rev=112549&r1=112548&r2=112549&view=diff
==============================================================================
--- cfe/trunk/lib/Lex/Lexer.cpp (original)
+++ cfe/trunk/lib/Lex/Lexer.cpp Mon Aug 30 18:11:03 2010
@@ -922,7 +922,7 @@
 
 /// isHexaLiteral - Return true if Start points to a hex constant.
 /// FIXME: This isn't correct, it will mislex:
-///     0\
+///     0\       <- escaped newline.
 ///     x1234e+1
 /// in microsoft mode (where this is supposed to be several different tokens).
 static inline bool isHexaLiteral(const char *Start, const char *End) {


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to