
Microsoft's compiler supports an extension for 128-bit literals. This is referenced in `intsafe.h` which is included transitievly. When building with modules, the literal parsing causes a failure due to the missing support for the extension. To alleviate this issue, support parsing this literal, especially now that there is the BitInt extension. Take the opportunity to tighten up the code slightly by ensuring that we do not access out-of-bounds characters when lexing the token.
61 lines
1.9 KiB
C
61 lines
1.9 KiB
C
// RUN: %clang_cc1 -fsyntax-only -verify -fms-extensions %s
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -fms-compatibility %s
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -triple i386-pc-win32 -fms-compatibility %s
|
|
|
|
__int8 x1 = 3i8;
|
|
__int16 x2 = 4i16;
|
|
__int32 x3 = 5i32;
|
|
__int64 x5 = 0x42i64;
|
|
__int64 x6 = 0x42I64;
|
|
|
|
__int64 y = 0x42i64u; // expected-error {{invalid suffix}}
|
|
__int64 w = 0x43ui64;
|
|
__int64 z = 9Li64; // expected-error {{invalid suffix}}
|
|
__int64 q = 10lli64; // expected-error {{invalid suffix}}
|
|
|
|
__complex double c1 = 1i; // GNU extension
|
|
__complex double c2 = 1.0i; // GNU extension
|
|
__complex float c3 = 1.0if;
|
|
|
|
#define UINT128_MAX 0xffffffffffffffffffffffffffffffffui128
|
|
#define ULLONG_MAX 0xffffffffffffffffui64
|
|
#define UINT 0xffffffffui32
|
|
#define USHORT 0xffffui16
|
|
#define UCHAR 0xffui8
|
|
|
|
#define INT128_MAX 170141183460469231731687303715884105727i128
|
|
|
|
void a(void) {
|
|
#if __SIZEOF_INT128__
|
|
__int128 j = UINT128_MAX;
|
|
__int128 k = INT128_MAX;
|
|
#else
|
|
int j = UINT128_MAX;
|
|
// expected-warning@-1{{implicit conversion from 'unsigned __int128' to 'int' changes value from 340282366920938463463374607431768211455 to -1}}
|
|
// expected-error@-2{{integer literal is too large to be represented in any integer type}}
|
|
int k = INT128_MAX;
|
|
// expected-warning@-1{{implicit conversion from '__int128' to 'int' changes value from 170141183460469231731687303715884105727 to -1}}
|
|
// expected-error@-2{{integer literal is too large to be represented in any signed integer type}}
|
|
#endif
|
|
unsigned long long m = ULLONG_MAX;
|
|
unsigned int n = UINT;
|
|
unsigned short s = USHORT;
|
|
unsigned char c = UCHAR;
|
|
}
|
|
|
|
void pr_7968(void)
|
|
{
|
|
int var1 = 0x1111111e+1;
|
|
int var2 = 0X1111111e+1;
|
|
int var3 = 0xe+1;
|
|
int var4 = 0XE+1;
|
|
|
|
int var5= 0\
|
|
x1234e+1;
|
|
|
|
int var6=
|
|
/*expected-warning {{backslash and newline separated by space}} */ 0\
|
|
x1234e+1;
|
|
}
|
|
|