diff options
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> |