summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectLanguage.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2015-09-02 01:06:46 +0000
committerJim Ingham <jingham@apple.com>2015-09-02 01:06:46 +0000
commit0e0984eebb0314f980ee9d2737e3b93ecab13d5a (patch)
tree53327574c5cf5de54f7ec37839266f2d24de6e8b /lldb/source/Commands/CommandObjectLanguage.cpp
parentbb0cef6e9c97c09889a0a9af93d4d1e82549a812 (diff)
downloadbcm5719-llvm-0e0984eebb0314f980ee9d2737e3b93ecab13d5a.tar.gz
bcm5719-llvm-0e0984eebb0314f980ee9d2737e3b93ecab13d5a.zip
Move things from the LanguageRuntime that obviously belong in the new Language plugin instead.
llvm-svn: 246611
Diffstat (limited to 'lldb/source/Commands/CommandObjectLanguage.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectLanguage.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectLanguage.cpp b/lldb/source/Commands/CommandObjectLanguage.cpp
index d349fce6d61..093126a80ee 100644
--- a/lldb/source/Commands/CommandObjectLanguage.cpp
+++ b/lldb/source/Commands/CommandObjectLanguage.cpp
@@ -14,6 +14,7 @@
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandReturnObject.h"
+#include "lldb/Target/Language.h"
#include "lldb/Target/LanguageRuntime.h"
using namespace lldb;
@@ -36,7 +37,7 @@ CommandObjectLanguage::GenerateHelpText (Stream &output_stream) {
output_stream << "\nlanguage name can be one of the following:\n";
- LanguageRuntime::PrintAllLanguages(output_stream, " ", "\n");
+ Language::PrintAllLanguages(output_stream, " ", "\n");
}
CommandObjectLanguage::~CommandObjectLanguage ()
OpenPOWER on IntegriCloud