diff options
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Basic/TargetInfo.cpp | 1 | ||||
-rw-r--r-- | clang/lib/Basic/Targets.cpp | 2 | ||||
-rw-r--r-- | clang/lib/Headers/stdint.h | 21 | ||||
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 1 |
4 files changed, 6 insertions, 19 deletions
diff --git a/clang/lib/Basic/TargetInfo.cpp b/clang/lib/Basic/TargetInfo.cpp index 378a91503bf..82b6c190cda 100644 --- a/clang/lib/Basic/TargetInfo.cpp +++ b/clang/lib/Basic/TargetInfo.cpp @@ -39,6 +39,7 @@ TargetInfo::TargetInfo(const std::string &T) : Triple(T) { PtrDiffType = SignedLong; IntMaxType = SignedLongLong; UIntMaxType = UnsignedLongLong; + IntPtrType = SignedLong; WCharType = SignedInt; FloatFormat = &llvm::APFloat::IEEEsingle; DoubleFormat = &llvm::APFloat::IEEEdouble; diff --git a/clang/lib/Basic/Targets.cpp b/clang/lib/Basic/Targets.cpp index c72982bf221..9e81ed7db2f 100644 --- a/clang/lib/Basic/Targets.cpp +++ b/clang/lib/Basic/Targets.cpp @@ -629,6 +629,7 @@ public: UserLabelPrefix = ""; SizeType = UnsignedInt; PtrDiffType = SignedInt; + IntPtrType = SignedInt; } virtual void getTargetDefines(std::vector<char> &Defines) const { X86_32TargetInfo::getTargetDefines(Defines); @@ -937,6 +938,7 @@ namespace { SizeType = UnsignedInt; IntMaxType = SignedLong; UIntMaxType = UnsignedLong; + IntPtrType = SignedShort; PtrDiffType = SignedInt; DescriptionString = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"; } diff --git a/clang/lib/Headers/stdint.h b/clang/lib/Headers/stdint.h index 3eb72bb57b5..9e5bfd700f8 100644 --- a/clang/lib/Headers/stdint.h +++ b/clang/lib/Headers/stdint.h @@ -70,25 +70,8 @@ typedef uint64_t uint_fast64_t; /* C99 7.18.1.4 Integer types capable of holding object pointers. */ -#if (1LL << (__POINTER_WIDTH__-1))-1 == __LONG_MAX__ -/* If the pointer size is equal to long, use long. This is for compatibility - * with many systems which just use long and expect it to work in 32-bit and - * 64-bit mode. If long is not suitable, we use a fixed size type below. - */ -typedef long intptr_t; -typedef unsigned long uintptr_t; -#elif __POINTER_WIDTH__ == 64 -typedef int64_t intptr_t; -typedef uint64_t uintptr_t; -#elif __POINTER_WIDTH__ == 32 -typedef int32_t intptr_t; -typedef uint32_t uintptr_t; -#elif __POINTER_WIDTH__ == 16 -typedef int16_t intptr_t; -typedef uint16_t uintptr_t; -#else -#error "unknown or unset pointer width!" -#endif +typedef __INTPTR_TYPE__ intptr_t; +typedef unsigned __INTPTR_TYPE__ uintptr_t; /* C99 7.18.1.5 Greatest-width integer types. */ diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index f16d83c5a2e..d769720634d 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -557,6 +557,7 @@ static void InitializePredefinedMacros(Preprocessor &PP, DefineType("__INTMAX_TYPE__", TI.getIntMaxType(), Buf); DefineType("__UINTMAX_TYPE__", TI.getUIntMaxType(), Buf); DefineType("__PTRDIFF_TYPE__", TI.getPtrDiffType(0), Buf); + DefineType("__INTPTR_TYPE__", TI.getIntPtrType(), Buf); DefineType("__SIZE_TYPE__", TI.getSizeType(), Buf); DefineType("__WCHAR_TYPE__", TI.getWCharType(), Buf); // FIXME: TargetInfo hookize __WINT_TYPE__. |