aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectBreakpoint.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/CommandObjectBreakpoint.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/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectBreakpoint.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp
index 7727933..8e2045a 100644
--- a/lldb/source/Commands/CommandObjectBreakpoint.cpp
+++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp
@@ -26,7 +26,7 @@
#include "lldb/Core/StreamString.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandReturnObject.h"
-#include "lldb/Target/LanguageRuntime.h"
+#include "lldb/Target/Language.h"
#include "lldb/Target/Target.h"
#include "lldb/Interpreter/CommandCompletions.h"
#include "lldb/Target/StackFrame.h"
@@ -165,7 +165,7 @@ public:
case 'E':
{
- LanguageType language = LanguageRuntime::GetLanguageTypeFromString (option_arg);
+ LanguageType language = Language::GetLanguageTypeFromString (option_arg);
switch (language)
{
@@ -251,7 +251,7 @@ public:
}
case 'L':
- m_language = LanguageRuntime::GetLanguageTypeFromString (option_arg);
+ m_language = Language::GetLanguageTypeFromString (option_arg);
if (m_language == eLanguageTypeUnknown)
error.SetErrorStringWithFormat ("Unknown language type: '%s' for breakpoint", option_arg);
break;