diff options
author | Mike Stump <mrs@apple.com> | 2009-10-08 23:00:00 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-10-08 23:00:00 +0000 |
commit | a55cce8b3e579e62a503976235de5d35fcf6a893 (patch) | |
tree | 96990663b11b8fb8e80fb125d67fb441be69f723 | |
parent | b79fe2d28777652a4df4f49dc876cbec060ca90e (diff) |
"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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83592 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Basic/Targets.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 324b1d6f84..6e670c58c6 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -1071,6 +1071,7 @@ public: TLSSupported = false; WCharType = UnsignedShort; WCharWidth = WCharAlign = 16; + LongWidth = LongAlign = 32; DoubleAlign = LongLongAlign = 64; } virtual void getTargetDefines(const LangOptions &Opts, |