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 | a8be02b655b76e4dbe776b0c62bc3c450dc6feab (patch) | |
tree | ac84ecb65dfd214bc6a8ec10182f28ace2d167e2 /lib/Lex/LiteralSupport.cpp | |
parent | 5b4ec636637c9d876102240127cc0dca9280e83a (diff) |
ui64, etc. are valid VS suffixes.
Fixes radar 7562363.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/LiteralSupport.cpp')
-rw-r--r-- | lib/Lex/LiteralSupport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/LiteralSupport.cpp b/lib/Lex/LiteralSupport.cpp index 5cd5497505..004e6755e5 100644 --- a/lib/Lex/LiteralSupport.cpp +++ b/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) { |