aboutsummaryrefslogtreecommitdiff
path: root/lib/Basic/TargetInfo.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2009-01-17 23:56:13 +0000
committerNate Begeman <natebegeman@mac.com>2009-01-17 23:56:13 +0000
commit22b9d5a1fd9067785b62d9237bae6ee2a9b40afc (patch)
treed0162f381c83800a5976d924261c2d1789d77833 /lib/Basic/TargetInfo.cpp
parent45b050e72d058131e6f169fe54888bb91a003fb5 (diff)
Allow targets to override IntMaxTWidth
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62434 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/TargetInfo.cpp')
-rw-r--r--lib/Basic/TargetInfo.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp
index 89bc8b4c8f..2ea1f232bf 100644
--- a/lib/Basic/TargetInfo.cpp
+++ b/lib/Basic/TargetInfo.cpp
@@ -34,6 +34,7 @@ TargetInfo::TargetInfo(const std::string &T) : Triple(T) {
DoubleAlign = 64;
LongDoubleWidth = 64;
LongDoubleAlign = 64;
+ IntMaxTWidth = 64;
SizeType = UnsignedLong;
PtrDiffType = SignedLong;
IntMaxType = SignedLongLong;