diff options
author | Jim Ingham <jingham@apple.com> | 2015-09-03 01:13:26 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-09-03 01:13:26 +0000 |
commit | 59365b0ba69ae2c5b90491b45df559c42b00ae1b (patch) | |
tree | 704c18c151d9fb477e1c4f68b5ecdb658290e659 /lldb/source/Commands/CommandObjectLanguage.cpp | |
parent | 3c0f9d81705f95c3f6b25add6b17eb7c5ad3b0ff (diff) | |
download | llvm-59365b0ba69ae2c5b90491b45df559c42b00ae1b.zip llvm-59365b0ba69ae2c5b90491b45df559c42b00ae1b.tar.gz llvm-59365b0ba69ae2c5b90491b45df559c42b00ae1b.tar.bz2 |
Remove the list of all languages in the help for "help language" since
almost all the elements on the list can't actually be passed to the language
command and all the ones that can have already been listed in the subcommands
list.
<rdar://problem/22551082>
llvm-svn: 246740
Diffstat (limited to 'lldb/source/Commands/CommandObjectLanguage.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectLanguage.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/source/Commands/CommandObjectLanguage.cpp b/lldb/source/Commands/CommandObjectLanguage.cpp index 093126a..44c66d3 100644 --- a/lldb/source/Commands/CommandObjectLanguage.cpp +++ b/lldb/source/Commands/CommandObjectLanguage.cpp @@ -34,10 +34,6 @@ CommandObjectMultiword (interpreter, void
CommandObjectLanguage::GenerateHelpText (Stream &output_stream) {
CommandObjectMultiword::GenerateHelpText(output_stream);
-
- output_stream << "\nlanguage name can be one of the following:\n";
-
- Language::PrintAllLanguages(output_stream, " ", "\n");
}
CommandObjectLanguage::~CommandObjectLanguage ()
|