diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-01-22 22:30:25 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-01-22 22:30:25 +0000 |
commit | f57b820109c7f23b45ab6152a9eefc1f6b14eb38 (patch) | |
tree | 479da4b13e86b9d9ace2172ee88f21d1ea7dd5b4 | |
parent | 3687a5d83f5deb4b70b0c8e522c455d546f40101 (diff) |
Fixes test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94236 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Lexer/constants-ms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Lexer/constants-ms.c b/test/Lexer/constants-ms.c index 02d5594d5b..97e660080d 100644 --- a/test/Lexer/constants-ms.c +++ b/test/Lexer/constants-ms.c @@ -14,8 +14,8 @@ __int64 q = 10lli64; // expected-error {{invalid suffix}} // radar 7562363 #define ULLONG_MAX 0xffffffffffffffffui64 #define UINT 0xffffffffui32 -#define USHORT 0xffffui8 -#define UCHAR 0xffffffffui8 +#define USHORT 0xffffui16 +#define UCHAR 0xffui8 void a() { unsigned long long m = ULLONG_MAX; |