diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-30 06:30:56 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-30 06:30:56 +0000 |
commit | 7f3a545ba6ccfbe8b7f5268e4cfbee52ec2c4d4c (patch) | |
tree | 77d2a73f0f2c7221faf1dae7946942553f3e8baa /test/Preprocessor/init.c | |
parent | 96d38c100d5a37f7a3343c526507de5b50f68c27 (diff) |
Headers: Define __INT64_TYPE__ in terms of getInt64Type(), which isn't always
'long'. The practical upshot is so that the uint64_t we define in our stdint.h
ends up being compatible with that defined by gcc (at least on Darwin), which
otherwise could lead to type incompatibilities with other system headers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107255 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/init.c')
-rw-r--r-- | test/Preprocessor/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Preprocessor/init.c b/test/Preprocessor/init.c index 8a3e89e49a..8283671b66 100644 --- a/test/Preprocessor/init.c +++ b/test/Preprocessor/init.c @@ -838,7 +838,7 @@ // S390X:#define __INT16_TYPE__ short // S390X:#define __INT32_TYPE__ int // S390X:#define __INT64_C_SUFFIX__ L -// S390X:#define __INT64_TYPE__ long int +// S390X:#define __INT64_TYPE__ long long int // S390X:#define __INT8_TYPE__ char // S390X:#define __INTMAX_MAX__ 9223372036854775807LL // S390X:#define __INTMAX_TYPE__ long long int |