forked from OSchip/llvm-project
Targets without long long should reduce the size of intmax_t
accordingly. llvm-svn: 71966
This commit is contained in:
parent
ce7f900b3b
commit
678d3bac03
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue