[cfe-commits] r71009 - /cfe/branches/Apple/Dib/tools/clang-cc/clang-cc.cpp
Mike Stump
mrs at apple.com
Tue May 5 13:29:49 PDT 2009
Author: mrs
Date: Tue May 5 15:29:21 2009
New Revision: 71009
URL: http://llvm.org/viewvc/llvm-project?rev=71009&view=rev
Log:
Merge in 70993:
Enable tight Objective-C interface layout unconditionally.
- I will remove the flag when I'm comfortable there is no fallout
from this.
Modified:
cfe/branches/Apple/Dib/tools/clang-cc/clang-cc.cpp
Modified: cfe/branches/Apple/Dib/tools/clang-cc/clang-cc.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/Dib/tools/clang-cc/clang-cc.cpp?rev=71009&r1=71008&r2=71009&view=diff
==============================================================================
--- cfe/branches/Apple/Dib/tools/clang-cc/clang-cc.cpp (original)
+++ cfe/branches/Apple/Dib/tools/clang-cc/clang-cc.cpp Tue May 5 15:29:21 2009
@@ -849,8 +849,7 @@
if (ObjCNonFragileABI)
Options.ObjCNonFragileABI = 1;
- if (ObjCTightLayout)
- Options.ObjCTightLayout = 1;
+ Options.ObjCTightLayout = 1;
if (EmitAllDecls)
Options.EmitAllDecls = 1;
More information about the cfe-commits
mailing list