diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-01-22 23:02:58 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-01-22 23:02:58 +0000 |
commit | 30bc57187be7535c57ef1ca8ff3e765653e94332 (patch) | |
tree | 612cf7b8b8089d90ab101510878767b305b4a709 /lib/CodeGen/CodeGenModule.cpp | |
parent | 872e25cfd9069ef20616630f33cecf2e96e62a26 (diff) |
Use NonFragileABI as name of new Next abi. More comments
for the new meta-data.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index 79f00dec97..6e1321f4d6 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -39,7 +39,7 @@ CodeGenModule::CodeGenModule(ASTContext &C, const LangOptions &LO, if (Features.ObjC1) { if (Features.NeXTRuntime) { - Runtime = Features.ObjCModernABI ? CreateMacModernObjCRuntime(*this) + Runtime = Features.ObjCNonFragileABI ? CreateMacNonFragileABIObjCRuntime(*this) : CreateMacObjCRuntime(*this); } else { Runtime = CreateGNUObjCRuntime(*this); |