summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/OptionGroupVariable.cpp
diff options
context:
space:
mode:
authorKuba Mracek <mracek@apple.com>2018-10-31 00:29:17 +0000
committerKuba Mracek <mracek@apple.com>2018-10-31 00:29:17 +0000
commit377f9f9b3f65b530887d6bf0042799d1765b42d6 (patch)
treea6cc9ffd81a1940ec9bcbf83598e27e3fc90d438 /lldb/source/Interpreter/OptionGroupVariable.cpp
parent9fd397b423ba442808957e65e3ad25a07cd203e4 (diff)
downloadbcm5719-llvm-377f9f9b3f65b530887d6bf0042799d1765b42d6.tar.gz
bcm5719-llvm-377f9f9b3f65b530887d6bf0042799d1765b42d6.zip
Revert r345678 (build failure on Linux machines).
llvm-svn: 345680
Diffstat (limited to 'lldb/source/Interpreter/OptionGroupVariable.cpp')
-rw-r--r--lldb/source/Interpreter/OptionGroupVariable.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lldb/source/Interpreter/OptionGroupVariable.cpp b/lldb/source/Interpreter/OptionGroupVariable.cpp
index f35aeb6aa55..1bcddb4b49f 100644
--- a/lldb/source/Interpreter/OptionGroupVariable.cpp
+++ b/lldb/source/Interpreter/OptionGroupVariable.cpp
@@ -28,9 +28,6 @@ static constexpr OptionDefinition g_variable_options[] = {
{LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "no-args", 'a',
OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone,
"Omit function arguments."},
- {LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "no-recognized-args", 't',
- OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone,
- "Omit recognized function arguments."},
{LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "no-locals", 'l',
OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone,
"Omit local variables."},
@@ -104,9 +101,6 @@ OptionGroupVariable::SetOptionValue(uint32_t option_idx,
case 's':
show_scope = true;
break;
- case 't':
- show_recognized_args = false;
- break;
case 'y':
error = summary.SetCurrentValue(option_arg);
break;
@@ -125,7 +119,6 @@ OptionGroupVariable::SetOptionValue(uint32_t option_idx,
void OptionGroupVariable::OptionParsingStarting(
ExecutionContext *execution_context) {
show_args = true; // Frame option only
- show_recognized_args = true; // Frame option only
show_locals = true; // Frame option only
show_globals = false; // Frame option only
show_decl = false;
OpenPOWER on IntegriCloud