| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- // RUN: %clang_cc1 -DX32TYPE=ULONG -triple powerpc-unknown-linux-gnu -std=c89 -x c %s -verify
- // RUN: %clang_cc1 -DX32TYPE=ULONG -triple powerpc-unknown-linux-gnu -std=iso9899:199409 -x c %s -verify
- // RUN: %clang_cc1 -DX32TYPE=ULONG -triple powerpc-unknown-linux-gnu -std=c++98 -x c++ %s -verify
- // RUN: %clang_cc1 -DX32TYPE=LLONG -triple powerpc-unknown-linux-gnu -std=c99 -x c %s -verify
- // RUN: %clang_cc1 -DX32TYPE=LLONG -triple powerpc-unknown-linux-gnu -std=c11 -x c %s -verify
- // RUN: %clang_cc1 -DX32TYPE=LLONG -triple powerpc-unknown-linux-gnu -std=c++11 -x c++ %s -verify
- // RUN: %clang_cc1 -DX32TYPE=LLONG -triple powerpc-unknown-linux-gnu -std=c++1y -x c++ %s -verify
- // RUN: %clang_cc1 -DX32TYPE=LLONG -triple powerpc-unknown-linux-gnu -std=c++1z -x c++ %s -verify
- // RUN: %clang_cc1 -DX64TYPE=ULONG -triple powerpc64-unknown-linux-gnu -std=c89 -x c %s -verify
- // RUN: %clang_cc1 -DX64TYPE=ULONG -triple powerpc64-unknown-linux-gnu -std=iso9899:199409 -x c %s -verify
- // RUN: %clang_cc1 -DX64TYPE=ULONG -triple powerpc64-unknown-linux-gnu -std=c++98 -x c++ %s -verify
- // RUN: %clang_cc1 -DX64TYPE=ULLONG -triple powerpc64-unknown-linux-gnu -std=c99 -x c %s -verify
- // RUN: %clang_cc1 -DX64TYPE=ULLONG -triple powerpc64-unknown-linux-gnu -std=c11 -x c %s -verify
- // RUN: %clang_cc1 -DX64TYPE=ULLONG -triple powerpc64-unknown-linux-gnu -std=c++11 -x c++ %s -verify
- // RUN: %clang_cc1 -DX64TYPE=ULLONG -triple powerpc64-unknown-linux-gnu -std=c++1y -x c++ %s -verify
- // RUN: %clang_cc1 -DX64TYPE=ULLONG -triple powerpc64-unknown-linux-gnu -std=c++1z -x c++ %s -verify
- #ifdef X64TYPE
- #define X32TYPE long
- #endif
- #define IS_ULONG_ULONG 1
- #define IS_ULONG2(X) IS_ULONG_##X
- #define IS_ULONG(X) IS_ULONG2(X)
- #if !defined(X64TYPE) && !IS_ULONG(X32TYPE)
- // expected-no-diagnostics
- #endif
- typedef unsigned long ULONG;
- typedef long long LLONG;
- typedef unsigned long long ULLONG;
- /******************************************************************************
- * Test 2^31 as a decimal literal with no suffix and with the "l" and "L" cases.
- ******************************************************************************/
- extern X32TYPE x32;
- extern __typeof__(2147483648) x32;
- extern __typeof__(2147483648l) x32;
- extern __typeof__(2147483648L) x32;
- #if IS_ULONG(X32TYPE)
- #if !__cplusplus
- /******************************************************************************
- * Under pre-C99 ISO C, unsigned long is attempted for decimal integer literals
- * that do not have a suffix containing "u" or "U" if the literal does not fit
- * within the range of int or long. See 6.1.3.2 paragraph 5.
- ******************************************************************************/
- // expected-warning@39 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C89; this literal will have type 'long long' in C99 onwards}}
- // expected-warning@40 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C89; this literal will have type 'long long' in C99 onwards}}
- // expected-warning@41 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C89; this literal will have type 'long long' in C99 onwards}}
- #else
- /******************************************************************************
- * Under pre-C++11 ISO C++, the same holds if the literal contains an "l" or "L"
- * in its suffix; otherwise, the behavior is undefined. See 2.13.1 [lex.icon]
- * paragraph 2.
- ******************************************************************************/
- // expected-warning@39 {{integer literal is too large to be represented in type 'long' and is subject to undefined behavior under C++98, interpreting as 'unsigned long'; this literal will have type 'long long' in C++11 onwards}}
- // expected-warning@40 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C++98; this literal will have type 'long long' in C++11 onwards}}
- // expected-warning@41 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C++98; this literal will have type 'long long' in C++11 onwards}}
- #endif
- #endif
- #ifdef X64TYPE
- /******************************************************************************
- * Test 2^63 as a decimal literal with no suffix and with the "l" and "L" cases.
- ******************************************************************************/
- extern X64TYPE x64;
- extern __typeof__(9223372036854775808) x64;
- extern __typeof__(9223372036854775808l) x64;
- extern __typeof__(9223372036854775808L) x64;
- #if IS_ULONG(X64TYPE)
- #if !__cplusplus
- /******************************************************************************
- * Under pre-C99 ISO C, unsigned long is attempted for decimal integer literals
- * that do not have a suffix containing "u" or "U" if the literal does not fit
- * within the range of int or long. See 6.1.3.2 paragraph 5.
- ******************************************************************************/
- // expected-warning@74 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C89; this literal will be ill-formed in C99 onwards}}
- // expected-warning@75 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C89; this literal will be ill-formed in C99 onwards}}
- // expected-warning@76 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C89; this literal will be ill-formed in C99 onwards}}
- #else
- /******************************************************************************
- * Under pre-C++11 ISO C++, the same holds if the literal contains an "l" or "L"
- * in its suffix; otherwise, the behavior is undefined. See 2.13.1 [lex.icon]
- * paragraph 2.
- ******************************************************************************/
- // expected-warning@74 {{integer literal is too large to be represented in type 'long' and is subject to undefined behavior under C++98, interpreting as 'unsigned long'; this literal will be ill-formed in C++11 onwards}}
- // expected-warning@75 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C++98; this literal will be ill-formed in C++11 onwards}}
- // expected-warning@76 {{integer literal is too large to be represented in type 'long', interpreting as 'unsigned long' per C++98; this literal will be ill-formed in C++11 onwards}}
- #endif
- #else
- /******************************************************************************
- * The status quo in C99/C++11-and-later modes for the literals in question is
- * to interpret them as unsigned as an extension.
- ******************************************************************************/
- // expected-warning@74 {{integer literal is too large to be represented in a signed integer type, interpreting as unsigned}}
- // expected-warning@75 {{integer literal is too large to be represented in a signed integer type, interpreting as unsigned}}
- // expected-warning@76 {{integer literal is too large to be represented in a signed integer type, interpreting as unsigned}}
- #endif
- #endif
- /******************************************************************************
- * Test preprocessor arithmetic with 2^31 as a decimal literal with no suffix
- * and with the "l" and "L" cases.
- ******************************************************************************/
- #if !IS_ULONG(X32TYPE)
- /******************************************************************************
- * If the literal is signed without need for the modified range of the signed
- * integer types within the controlling constant expression for conditional
- * inclusion, then it will also be signed with said modified range.
- ******************************************************************************/
- #define EXPR(X) ((X - X) - 1 < 0)
- #else
- /******************************************************************************
- * Strictly speaking, in pre-C99/C++11 ISO C/C++, the preprocessor arithmetic is
- * evaluated with the range of long/unsigned long; however, both Clang and GCC
- * evaluate using 64-bits even when long/unsigned long are 32-bits outside of
- * preprocessing.
- *
- * If the range used becomes 32-bits, then this test will enforce the treatment
- * as unsigned of the literals in question.
- *
- * Note:
- * Under pre-C99/C++11 ISO C/C++, whether the interpretation of the literal is
- * affected by the modified range of the signed and unsigned integer types
- * within the controlling constant expression for conditional inclusion is
- * unclear.
- ******************************************************************************/
- #define PP_LONG_MAX ((0ul - 1ul) >> 1)
- #define EXPR(X) \
- (PP_LONG_MAX >= 0x80000000 || (X - X) - 1 > 0) // either 2^31 fits into a
- // preprocessor "long" or the
- // literals in question are
- // unsigned
- #endif
- #if !(EXPR(2147483648) && EXPR(2147483648l) && EXPR(2147483648L))
- #error Unexpected signedness or conversion behavior
- #endif
|