diff options
author | Zachary Turner <zturner@google.com> | 2017-03-04 01:30:05 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-03-04 01:30:05 +0000 |
commit | 666cc0b291b0212ab5bd1c6d6cbeebddae171bc7 (patch) | |
tree | b705ee37aaf4dd102c48753c59ba21225fde0668 /lldb/source/Host/linux | |
parent | 51383a60c0437f459d4d8c18e343925b09c97e02 (diff) | |
download | bcm5719-llvm-666cc0b291b0212ab5bd1c6d6cbeebddae171bc7.tar.gz bcm5719-llvm-666cc0b291b0212ab5bd1c6d6cbeebddae171bc7.zip |
Move DataBuffer / DataExtractor and friends from Core -> Utility.
llvm-svn: 296943
Diffstat (limited to 'lldb/source/Host/linux')
-rw-r--r-- | lldb/source/Host/linux/Host.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Host/linux/HostThreadLinux.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Host/linux/Host.cpp b/lldb/source/Host/linux/Host.cpp index 8149d84a845..15effaec9fd 100644 --- a/lldb/source/Host/linux/Host.cpp +++ b/lldb/source/Host/linux/Host.cpp @@ -25,10 +25,10 @@ #include "lldb/Utility/Error.h" #include "lldb/Utility/Log.h" -#include "lldb/Core/DataBufferHeap.h" -#include "lldb/Core/DataExtractor.h" #include "lldb/Host/Host.h" #include "lldb/Host/HostInfo.h" +#include "lldb/Utility/DataBufferHeap.h" +#include "lldb/Utility/DataExtractor.h" #include "Plugins/Process/Linux/ProcFileReader.h" #include "lldb/Core/ModuleSpec.h" diff --git a/lldb/source/Host/linux/HostThreadLinux.cpp b/lldb/source/Host/linux/HostThreadLinux.cpp index 625f05d0e9d..a974477e14e 100644 --- a/lldb/source/Host/linux/HostThreadLinux.cpp +++ b/lldb/source/Host/linux/HostThreadLinux.cpp @@ -9,7 +9,7 @@ #include "lldb/Host/linux/HostThreadLinux.h" #include "Plugins/Process/Linux/ProcFileReader.h" -#include "lldb/Core/DataBuffer.h" +#include "lldb/Utility/DataBuffer.h" #include "llvm/ADT/SmallVector.h" |