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 /Driver/clang.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 'Driver/clang.cpp')
-rw-r--r-- | Driver/clang.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp index 9d28720ce2..cf58f34e7c 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -484,7 +484,7 @@ static llvm::cl::opt<bool> EnableBlocks("fblocks", llvm::cl::desc("enable the 'blocks' language feature")); static llvm::cl::opt<bool> -ObjCModernABI("fobjc-modern-abi", llvm::cl::desc("enable objective-c's modern abi")); +ObjCNonFragileABI("fobjc-nonfragile-abi", llvm::cl::desc("enable objective-c's nonfragile abi")); // FIXME: This (and all GCC -f options) really come in -f... and @@ -618,8 +618,8 @@ static void InitializeLanguageStandard(LangOptions &Options, LangKind LK, else if (GNURuntime) Options.NeXTRuntime = 0; - if (ObjCModernABI) - Options.ObjCModernABI = 1; + if (ObjCNonFragileABI) + Options.ObjCNonFragileABI = 1; } static llvm::cl::opt<bool> |