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 | b15a3d5969dda977a0be0a4302d0a83e2c6e380c (patch) | |
tree | 0bc7a08349db5e394a292d37bd9f49d744fd8384 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | c6252091ddd93ceff3b2f4fa00af190782729403 (diff) | |
download | bcm5719-llvm-b15a3d5969dda977a0be0a4302d0a83e2c6e380c.tar.gz bcm5719-llvm-b15a3d5969dda977a0be0a4302d0a83e2c6e380c.zip |
Use NonFragileABI as name of new Next abi. More comments
for the new meta-data.
llvm-svn: 62806
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 79f00dec977..6e1321f4d6c 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/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); |