diff options
author | Jim Ingham <jingham@apple.com> | 2015-09-02 01:06:46 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-09-02 01:06:46 +0000 |
commit | 0e0984eebb0314f980ee9d2737e3b93ecab13d5a (patch) | |
tree | 53327574c5cf5de54f7ec37839266f2d24de6e8b /lldb/source/Core/FormatEntity.cpp | |
parent | bb0cef6e9c97c09889a0a9af93d4d1e82549a812 (diff) | |
download | bcm5719-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/Core/FormatEntity.cpp')
-rw-r--r-- | lldb/source/Core/FormatEntity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/FormatEntity.cpp b/lldb/source/Core/FormatEntity.cpp index 4e0258889f1..fd68e57d962 100644 --- a/lldb/source/Core/FormatEntity.cpp +++ b/lldb/source/Core/FormatEntity.cpp @@ -31,7 +31,7 @@ #include "lldb/Symbol/Symbol.h" #include "lldb/Symbol/VariableList.h" #include "lldb/Target/ExecutionContext.h" -#include "lldb/Target/LanguageRuntime.h" +#include "lldb/Target/Language.h" #include "lldb/Target/Process.h" #include "lldb/Target/RegisterContext.h" #include "lldb/Target/SectionLoadList.h" @@ -1529,7 +1529,7 @@ FormatEntity::Format (const Entry &entry, CompileUnit *cu = sc->comp_unit; if (cu) { - const char *lang_name = LanguageRuntime::GetNameForLanguageType(cu->GetLanguage()); + const char *lang_name = Language::GetNameForLanguageType(cu->GetLanguage()); if (lang_name) { s.PutCString(lang_name); |