From 6a3615c90e654fce94e9cf635fb4021d5c40743e Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Fri, 31 Oct 2008 16:05:19 +0000 Subject: [PATCH] Fix a bug that was introduced in 58501. Ideally I think we should force all targets to set these values and not have defaults. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58511 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Basic/TargetInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp index aa19928e5f..522a09dbb1 100644 --- a/lib/Basic/TargetInfo.cpp +++ b/lib/Basic/TargetInfo.cpp @@ -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; -- 2.50.1