diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-08 03:43:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-08 03:43:51 +0000 |
commit | 250dbdce57e2d050a44eb344ea74e70d54925d9c (patch) | |
tree | b6e9c73895e61d1849c8009ac4264c99cbb890c5 /lib/Support | |
parent | f69d41c864d80df63cf9548fd358ca3b26ffc57e (diff) | |
download | external_llvm-250dbdce57e2d050a44eb344ea74e70d54925d9c.zip external_llvm-250dbdce57e2d050a44eb344ea74e70d54925d9c.tar.gz external_llvm-250dbdce57e2d050a44eb344ea74e70d54925d9c.tar.bz2 |
Remove AllowInverse: it leaks memory and is not the right
abstraction for CommandLine.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68588 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/CommandLine.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 710b210..e4f65ba 100644 --- a/lib/Support/CommandLine.cpp +++ b/lib/Support/CommandLine.cpp @@ -872,30 +872,9 @@ bool parser<bool>::parse(Option &O, const char *ArgName, return O.error(": '" + Arg + "' is invalid value for boolean argument! Try 0 or 1"); } - if (IsInvertible && strncmp(ArgName+1, "no-", 3) == 0) - Value = !Value; return false; } -void parser<bool>::getExtraOptionNames(std::vector<const char*> &OptionNames) { - if (!IsInvertible) - return; - - char *s = new char [strlen(ArgStr) + 3 + 1]; - s[0] = ArgStr[0]; - if (strncmp(ArgStr+1, "no-", 3) == 0) - strcpy(&s[1], &ArgStr[4]); - else { - s[1] = 'n'; - s[2] = 'o'; - s[3] = '-'; - strcpy(&s[4], ArgStr+1); - } - OptionNames.push_back(s); -} - - - // parser<boolOrDefault> implementation // bool parser<boolOrDefault>::parse(Option &O, const char *ArgName, |