]> granicus.if.org Git - clang/commitdiff
Enable tight Objective-C interface layout unconditionally.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 5 May 2009 18:52:50 +0000 (18:52 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 5 May 2009 18:52:50 +0000 (18:52 +0000)
 - I will remove the flag when I'm comfortable there is no fallout
   from this.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70993 91177308-0d34-0410-b5e6-96231b3b80d8

tools/clang-cc/clang-cc.cpp

index 5ef2bf6c34beae94706a167149247f2f76655cb2..17eeac776c0e76798f959762d1ab492b564fb130 100644 (file)
@@ -849,8 +849,7 @@ static void InitializeLanguageStandard(LangOptions &Options, LangKind LK,
   if (ObjCNonFragileABI)
     Options.ObjCNonFragileABI = 1;
   
-  if (ObjCTightLayout)
-    Options.ObjCTightLayout = 1;
+  Options.ObjCTightLayout = 1;
 
   if (EmitAllDecls)
     Options.EmitAllDecls = 1;