From: Eli Friedman Date: Sat, 16 May 2009 23:30:57 +0000 (+0000) Subject: Targets without long long should reduce the size of intmax_t X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f7a5310d43ea58c07d06965b46718a8012b1f76;p=clang 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 029a9f79f3..f1a84b459c 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -1258,6 +1258,7 @@ namespace { TLSSupported = false; IntWidth = 16; LongWidth = LongLongWidth = 32; + IntMaxTWidth = 32; PointerWidth = 16; IntAlign = 8; LongAlign = LongLongAlign = 8; @@ -1300,6 +1301,7 @@ namespace { TLSSupported = false; IntWidth = 16; LongWidth = LongLongWidth = 32; + IntMaxTWidth = 32; PointerWidth = 16; IntAlign = 8; LongAlign = LongLongAlign = 8;