diff options
author | Dawn Perchik <dawn@burble.org> | 2010-09-02 02:18:55 +0000 |
---|---|---|
committer | Dawn Perchik <dawn@burble.org> | 2010-09-02 02:18:55 +0000 |
commit | d0b4e7c8723c031cd8d743b2ff63943a3d0563ff (patch) | |
tree | 9093b71eea152741fac3a19ef7f4770ea0538028 /include/clang/Basic/LangOptions.h | |
parent | e8a4d7d0064b357a30fe7ee4f2ddc02f9ffc0357 (diff) |
Reverting rev 112791 - apparently -fborland-extensions is on all the time?!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112797 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/LangOptions.h')
-rw-r--r-- | include/clang/Basic/LangOptions.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/Basic/LangOptions.h b/include/clang/Basic/LangOptions.h index 5bd0d04a4e..bbcceb70ac 100644 --- a/include/clang/Basic/LangOptions.h +++ b/include/clang/Basic/LangOptions.h @@ -34,7 +34,6 @@ public: unsigned HexFloats : 1; // C99 Hexadecimal float constants. unsigned C99 : 1; // C99 Support unsigned Microsoft : 1; // Microsoft extensions. - unsigned Borland : 1; // Borland extensions. unsigned CPlusPlus : 1; // C++ Support unsigned CPlusPlus0x : 1; // C++0x Support unsigned CXXOperatorNames : 1; // Treat C++ operator names as keywords. @@ -141,7 +140,7 @@ public: HexFloats = 0; GC = ObjC1 = ObjC2 = ObjCNonFragileABI = ObjCNonFragileABI2 = 0; NoConstantCFStrings = 0; InlineVisibilityHidden = 0; - C99 = Microsoft = Borland = CPlusPlus = CPlusPlus0x = 0; + C99 = Microsoft = CPlusPlus = CPlusPlus0x = 0; CXXOperatorNames = PascalStrings = WritableStrings = ConstStrings = 0; Exceptions = SjLjExceptions = Freestanding = NoBuiltin = 0; NeXTRuntime = 1; |