diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-01-22 21:36:53 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-01-22 21:36:53 +0000 |
commit | 8c6c0b6a1f898eb1b2d7de7d855df27a5cf50d68 (patch) | |
tree | f2859b838be70d198d316fb047e7e0e0faa79bb2 /clang/lib/Lex | |
parent | 10b204675075129bcc8c9a020731fe1e314611d6 (diff) | |
download | bcm5719-llvm-8c6c0b6a1f898eb1b2d7de7d855df27a5cf50d68.tar.gz bcm5719-llvm-8c6c0b6a1f898eb1b2d7de7d855df27a5cf50d68.zip |
ui64, etc. are valid VS suffixes.
Fixes radar 7562363.
llvm-svn: 94224
Diffstat (limited to 'clang/lib/Lex')
-rw-r--r-- | clang/lib/Lex/LiteralSupport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/LiteralSupport.cpp b/clang/lib/Lex/LiteralSupport.cpp index 5cd54975055..004e6755e5f 100644 --- a/clang/lib/Lex/LiteralSupport.cpp +++ b/clang/lib/Lex/LiteralSupport.cpp @@ -375,7 +375,7 @@ NumericLiteralParser(const char *begin, const char *end, continue; // Success. case 'i': if (PP.getLangOptions().Microsoft) { - if (isFPConstant || isUnsigned || isLong || isLongLong) break; + if (isFPConstant || isLong || isLongLong) break; // Allow i8, i16, i32, i64, and i128. if (s + 1 != ThisTokEnd) { |