Enable tight Objective-C interface layout unconditionally.

- 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
This commit is contained in:
Daniel Dunbar 2009-05-05 18:52:50 +00:00
Родитель 69aa08072d
Коммит d25f00c21b
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -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;