diff options
-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; |