Targets without long long should reduce the size of intmax_t
accordingly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71966 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp
index 029a9f7..f1a84b4 100644
--- a/lib/Basic/Targets.cpp
+++ b/lib/Basic/Targets.cpp
@@ -1258,6 +1258,7 @@
TLSSupported = false;
IntWidth = 16;
LongWidth = LongLongWidth = 32;
+ IntMaxTWidth = 32;
PointerWidth = 16;
IntAlign = 8;
LongAlign = LongLongAlign = 8;
@@ -1300,6 +1301,7 @@
TLSSupported = false;
IntWidth = 16;
LongWidth = LongLongWidth = 32;
+ IntMaxTWidth = 32;
PointerWidth = 16;
IntAlign = 8;
LongAlign = LongLongAlign = 8;