diff options
author | Jim Ingham <jingham@apple.com> | 2010-06-15 19:49:27 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-06-15 19:49:27 +0000 |
commit | 40af72e1063d72a00d47fe23816412029efc55ee (patch) | |
tree | cb81a5f78ad9da77ad62611f1c4cd8a04986de1c /lldb/source/Plugins/Process/gdb-remote | |
parent | e22295e8a660b99674556e2eaceb0a02b37fdf79 (diff) | |
download | bcm5719-llvm-40af72e1063d72a00d47fe23816412029efc55ee.tar.gz bcm5719-llvm-40af72e1063d72a00d47fe23816412029efc55ee.zip |
Move Args.{cpp,h} and Options.{cpp,h} to Interpreter where they really belong.
llvm-svn: 106034
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote')
3 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index cac2101e4c0..c144fed163b 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp @@ -13,7 +13,7 @@ // C Includes // C++ Includes // Other libraries and framework includes -#include "lldb/Core/Args.h" +#include "lldb/Interpreter/Args.h" #include "lldb/Core/ConnectionFileDescriptor.h" #include "lldb/Core/Log.h" #include "lldb/Core/State.h" diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 568e441ecee..81369c2368f 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -26,7 +26,7 @@ // Other libraries and framework includes #include "lldb/Breakpoint/WatchpointLocation.h" -#include "lldb/Core/Args.h" +#include "lldb/Interpreter/Args.h" #include "lldb/Core/ArchSpec.h" #include "lldb/Core/Debugger.h" #include "lldb/Core/ConnectionFileDescriptor.h" diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp index 051ce8f20f4..63ae7e78ccb 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp @@ -9,7 +9,7 @@ #include "ProcessGDBRemoteLog.h" -#include "lldb/Core/Args.h" +#include "lldb/Interpreter/Args.h" #include "lldb/Core/StreamFile.h" #include "ProcessGDBRemote.h" |