[cfe-commits] r83592 - /cfe/trunk/lib/Basic/Targets.cpp
Mike Stump
mrs at apple.com
Thu Oct 8 16:00:00 PDT 2009
Author: mrs
Date: Thu Oct 8 18:00:00 2009
New Revision: 83592
URL: http://llvm.org/viewvc/llvm-project?rev=83592&view=rev
Log:
"Someone pointed out that in my previous Targets.cpp patch I didn't
handle the long size difference for one of the Windows targets." Patch
by John Thompson.
Modified:
cfe/trunk/lib/Basic/Targets.cpp
Modified: cfe/trunk/lib/Basic/Targets.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/Targets.cpp?rev=83592&r1=83591&r2=83592&view=diff
==============================================================================
--- cfe/trunk/lib/Basic/Targets.cpp (original)
+++ cfe/trunk/lib/Basic/Targets.cpp Thu Oct 8 18:00:00 2009
@@ -1071,6 +1071,7 @@
TLSSupported = false;
WCharType = UnsignedShort;
WCharWidth = WCharAlign = 16;
+ LongWidth = LongAlign = 32;
DoubleAlign = LongLongAlign = 64;
}
virtual void getTargetDefines(const LangOptions &Opts,
More information about the cfe-commits
mailing list