aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandObject.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/Interpreter/CommandObject.cpp
parentbb0cef6e9c97c09889a0a9af93d4d1e82549a812 (diff)
downloadllvm-0e0984eebb0314f980ee9d2737e3b93ecab13d5a.zip
llvm-0e0984eebb0314f980ee9d2737e3b93ecab13d5a.tar.gz
llvm-0e0984eebb0314f980ee9d2737e3b93ecab13d5a.tar.bz2
Move things from the LanguageRuntime that obviously belong in the new Language plugin instead.
llvm-svn: 246611
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r--lldb/source/Interpreter/CommandObject.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp
index d42053c..616d3e3 100644
--- a/lldb/source/Interpreter/CommandObject.cpp
+++ b/lldb/source/Interpreter/CommandObject.cpp
@@ -28,6 +28,8 @@
#include "lldb/Target/Process.h"
#include "lldb/Target/Target.h"
+#include "lldb/Target/Language.h"
+
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandReturnObject.h"
@@ -848,7 +850,7 @@ LanguageTypeHelpTextCallback ()
StreamString sstr;
sstr << "One of the following languages:\n";
- LanguageRuntime::PrintAllLanguages(sstr, " ", "\n");
+ Language::PrintAllLanguages(sstr, " ", "\n");
sstr.Flush();