From 4981926bf654fe5a2c3893f24ca44106b217e71e Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 4 Jul 2009 13:58:54 +0000 Subject: Import Clang r74788. --- include/clang/Basic/TargetInfo.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/clang/Basic/TargetInfo.h') diff --git a/include/clang/Basic/TargetInfo.h b/include/clang/Basic/TargetInfo.h index a59c60b..537d553 100644 --- a/include/clang/Basic/TargetInfo.h +++ b/include/clang/Basic/TargetInfo.h @@ -76,7 +76,8 @@ public: UnsignedLongLong }; protected: - IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType; + IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType, + Int64Type; public: IntType getSizeType() const { return SizeType; } IntType getIntMaxType() const { return IntMaxType; } @@ -86,6 +87,7 @@ public: } IntType getIntPtrType() const { return IntPtrType; } IntType getWCharType() const { return WCharType; } + IntType getInt64Type() const { return Int64Type; } /// getPointerWidth - Return the width of pointers on this target, for the /// specified address space. -- cgit v1.1