diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-09-21 23:03:37 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-09-21 23:03:37 +0000 |
commit | b924259cc53e4d38e493616715e7b3e95bdee1ef (patch) | |
tree | e759646ba36c339ff97d591c586eb00ea8567630 /include/clang/Basic/LangOptions.h | |
parent | 69181a863c9a87ea84e96157191f855043b86cfb (diff) |
Removed -fobjc-newgc-api option. clang now conforms to
gcc-style write-barrier api only.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82493 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/LangOptions.h')
-rw-r--r-- | include/clang/Basic/LangOptions.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/Basic/LangOptions.h b/include/clang/Basic/LangOptions.h index 1dab615429..d4d3fe50eb 100644 --- a/include/clang/Basic/LangOptions.h +++ b/include/clang/Basic/LangOptions.h @@ -88,7 +88,6 @@ public: unsigned ElideConstructors : 1; // Whether C++ copy constructors should be // elided if possible. - unsigned ObjCNewGCAPI : 1; // Generate objective-c's new GC API private: unsigned GC : 2; // Objective-C Garbage Collection modes. We // declare this enum as unsigned because MSVC @@ -147,7 +146,6 @@ public: OverflowChecking = 0; ObjCGCBitmapPrint = 0; - ObjCNewGCAPI = 1; InstantiationDepth = 99; |