diff options
author | dim <dim@FreeBSD.org> | 2011-02-20 13:06:31 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-02-20 13:06:31 +0000 |
commit | 39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df (patch) | |
tree | a9243275843fbeaa590afc07ee888e006b8d54ea /test/Preprocessor/stdint.c | |
parent | 69b4eca4a4255ba43baa5c1d9bbdec3ec17f479e (diff) | |
download | FreeBSD-src-39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df.zip FreeBSD-src-39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df.tar.gz |
Vendor import of clang trunk r126079:
http://llvm.org/svn/llvm-project/cfe/trunk@126079
Diffstat (limited to 'test/Preprocessor/stdint.c')
-rw-r--r-- | test/Preprocessor/stdint.c | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/test/Preprocessor/stdint.c b/test/Preprocessor/stdint.c index f8bb921..b3ae843 100644 --- a/test/Preprocessor/stdint.c +++ b/test/Preprocessor/stdint.c @@ -421,106 +421,6 @@ // MSP430:INTMAX_C_(0) 0L // MSP430:UINTMAX_C_(0) 0UL // -// RUN: %clang_cc1 -E -ffreestanding -triple=pic16-none-none %s | FileCheck -check-prefix PIC16 %s -// -// PIC16:typedef signed long int int32_t; -// PIC16:typedef unsigned long int uint32_t; -// PIC16:typedef int32_t int_least32_t; -// PIC16:typedef uint32_t uint_least32_t; -// PIC16:typedef int32_t int_fast32_t; -// PIC16:typedef uint32_t uint_fast32_t; -// -// PIC16:typedef signed short int16_t; -// PIC16:typedef unsigned short uint16_t; -// PIC16:typedef int16_t int_least16_t; -// PIC16:typedef uint16_t uint_least16_t; -// PIC16:typedef int16_t int_fast16_t; -// PIC16:typedef uint16_t uint_fast16_t; -// -// PIC16:typedef signed char int8_t; -// PIC16:typedef unsigned char uint8_t; -// PIC16:typedef int8_t int_least8_t; -// PIC16:typedef uint8_t uint_least8_t; -// PIC16:typedef int8_t int_fast8_t; -// PIC16:typedef uint8_t uint_fast8_t; -// -// PIC16:typedef int16_t intptr_t; -// PIC16:typedef uint16_t uintptr_t; -// -// PIC16:typedef long int intmax_t; -// PIC16:typedef long unsigned int uintmax_t; -// -// PIC16:INT8_MAX_ 127 -// PIC16:INT8_MIN_ (-127 -1) -// PIC16:UINT8_MAX_ 255 -// PIC16:INT_LEAST8_MIN_ (-127 -1) -// PIC16:INT_LEAST8_MAX_ 127 -// PIC16:UINT_LEAST8_MAX_ 255 -// PIC16:INT_FAST8_MIN_ (-127 -1) -// PIC16:INT_FAST8_MAX_ 127 -// PIC16:UINT_FAST8_MAX_ 255 -// -// PIC16:INT16_MAX_ 32767 -// PIC16:INT16_MIN_ (-32767 -1) -// PIC16:UINT16_MAX_ 65535 -// PIC16:INT_LEAST16_MIN_ (-32767 -1) -// PIC16:INT_LEAST16_MAX_ 32767 -// PIC16:UINT_LEAST16_MAX_ 65535 -// PIC16:INT_FAST16_MIN_ (-32767 -1) -// PIC16:INT_FAST16_MAX_ 32767 -// PIC16:UINT_FAST16_MAX_ 65535 -// -// PIC16:INT32_MAX_ 2147483647L -// PIC16:INT32_MIN_ (-2147483647L -1) -// PIC16:UINT32_MAX_ 4294967295UL -// PIC16:INT_LEAST32_MIN_ (-2147483647L -1) -// PIC16:INT_LEAST32_MAX_ 2147483647L -// PIC16:UINT_LEAST32_MAX_ 4294967295UL -// PIC16:INT_FAST32_MIN_ (-2147483647L -1) -// PIC16:INT_FAST32_MAX_ 2147483647L -// PIC16:UINT_FAST32_MAX_ 4294967295UL -// -// PIC16:INT64_MAX_ INT64_MAX -// PIC16:INT64_MIN_ INT64_MIN -// PIC16:UINT64_MAX_ UINT64_MAX -// PIC16:INT_LEAST64_MIN_ INT_LEAST64_MIN -// PIC16:INT_LEAST64_MAX_ INT_LEAST64_MAX -// PIC16:UINT_LEAST64_MAX_ UINT_LEAST64_MAX -// PIC16:INT_FAST64_MIN_ INT_FAST64_MIN -// PIC16:INT_FAST64_MAX_ INT_FAST64_MAX -// PIC16:UINT_FAST64_MAX_ UINT_FAST64_MAX -// -// PIC16:INTPTR_MIN_ (-32767 -1) -// PIC16:INTPTR_MAX_ 32767 -// PIC16:UINTPTR_MAX_ 65535 -// PIC16:PTRDIFF_MIN_ (-32767 -1) -// PIC16:PTRDIFF_MAX_ 32767 -// PIC16:SIZE_MAX_ 65535 -// -// PIC16:INTMAX_MIN_ (-2147483647L -1) -// PIC16:INTMAX_MAX_ 2147483647L -// PIC16:UINTMAX_MAX_ 4294967295UL -// -// PIC16:SIG_ATOMIC_MIN_ (-2147483647L -1) -// PIC16:SIG_ATOMIC_MAX_ 2147483647L -// PIC16:WINT_MIN_ (-32767 -1) -// PIC16:WINT_MAX_ 32767 -// -// PIC16:WCHAR_MAX_ 32767 -// PIC16:WCHAR_MIN_ (-32767 -1) -// -// PIC16:INT8_C_(0) 0 -// PIC16:UINT8_C_(0) 0U -// PIC16:INT16_C_(0) 0 -// PIC16:UINT16_C_(0) 0U -// PIC16:INT32_C_(0) 0L -// PIC16:UINT32_C_(0) 0UL -// PIC16:INT64_C_(0) INT64_C(0) -// PIC16:UINT64_C_(0) UINT64_C(0) -// -// PIC16:INTMAX_C_(0) 0L -// PIC16:UINTMAX_C_(0) 0UL -// // RUN: %clang_cc1 -E -ffreestanding -triple=powerpc64-none-none %s | FileCheck -check-prefix PPC64 %s // // PPC64:typedef signed long int int64_t; |