forked from OSchip/llvm-project
Fix a bug that was introduced in 58501. Ideally I think we should force all targets to set these values and not have defaults.
llvm-svn: 58511
This commit is contained in:
parent
59ae7c0fd5
commit
2a79a90430
|
@ -34,7 +34,7 @@ TargetInfo::TargetInfo(const std::string &T) : Triple(T) {
|
|||
DoubleAlign = 64;
|
||||
LongDoubleWidth = 64;
|
||||
LongDoubleAlign = 64;
|
||||
SizeType = UnsignedInt;
|
||||
SizeType = UnsignedLong;
|
||||
IntMaxType = SignedLongLong;
|
||||
UIntMaxType = UnsignedLongLong;
|
||||
PtrDiffType = SignedLongLong;
|
||||
|
|
Loading…
Reference in New Issue