[cfe-commits] r58511 - /cfe/trunk/lib/Basic/TargetInfo.cpp
Anders Carlsson
andersca at mac.com
Fri Oct 31 09:05:20 PDT 2008
Author: andersca
Date: Fri Oct 31 11:05:19 2008
New Revision: 58511
URL: http://llvm.org/viewvc/llvm-project?rev=58511&view=rev
Log:
Fix a bug that was introduced in 58501. Ideally I think we should force all targets to set these values and not have defaults.
Modified:
cfe/trunk/lib/Basic/TargetInfo.cpp
Modified: cfe/trunk/lib/Basic/TargetInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/TargetInfo.cpp?rev=58511&r1=58510&r2=58511&view=diff
==============================================================================
--- cfe/trunk/lib/Basic/TargetInfo.cpp (original)
+++ cfe/trunk/lib/Basic/TargetInfo.cpp Fri Oct 31 11:05:19 2008
@@ -34,7 +34,7 @@
DoubleAlign = 64;
LongDoubleWidth = 64;
LongDoubleAlign = 64;
- SizeType = UnsignedInt;
+ SizeType = UnsignedLong;
IntMaxType = SignedLongLong;
UIntMaxType = UnsignedLongLong;
PtrDiffType = SignedLongLong;
More information about the cfe-commits
mailing list