diff options
author | Rui Ueyama <ruiu@google.com> | 2013-08-28 00:02:06 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-08-28 00:02:06 +0000 |
commit | 1997734e37775a68182b3fd508a52e0c28ff36f8 (patch) | |
tree | 0b2fccda27b7be4d26508a366e13c62cf0b1c9ef /include/llvm | |
parent | 7b2ee399d9c1b2112962d29540c25b94fa98e8ed (diff) | |
download | external_llvm-1997734e37775a68182b3fd508a52e0c28ff36f8.zip external_llvm-1997734e37775a68182b3fd508a52e0c28ff36f8.tar.gz external_llvm-1997734e37775a68182b3fd508a52e0c28ff36f8.tar.bz2 |
Revert "Option parsing: support case-insensitive option matching." as it broke Windows buildbot.
This reverts r189416.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189424 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Option/OptTable.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Option/OptTable.h b/include/llvm/Option/OptTable.h index 5035940..a5b59ce 100644 --- a/include/llvm/Option/OptTable.h +++ b/include/llvm/Option/OptTable.h @@ -51,7 +51,6 @@ private: /// \brief The static option information table. const Info *OptionInfos; unsigned NumOptionInfos; - bool IgnoreCase; unsigned TheInputOptionID; unsigned TheUnknownOptionID; @@ -73,8 +72,7 @@ private: } protected: - OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos, - bool _IgnoreCase = false); + OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos); public: ~OptTable(); |