diff options
author | Zachary Turner <zturner@google.com> | 2017-03-03 20:56:28 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-03-03 20:56:28 +0000 |
commit | 6f9e690199edd68b20bac92983a216459bc568ed (patch) | |
tree | 7ea5fb74ec0ed3234dd3af2decf394709498e8bc /lldb/source/Host/linux | |
parent | 000d61acfdf96a72a1c5e352f87c90eafa936de6 (diff) | |
download | bcm5719-llvm-6f9e690199edd68b20bac92983a216459bc568ed.tar.gz bcm5719-llvm-6f9e690199edd68b20bac92983a216459bc568ed.zip |
Move Log from Core -> Utility.
All references to Host and Core have been removed, so this
class can now safely be lowered into Utility.
Differential Revision: https://reviews.llvm.org/D30559
llvm-svn: 296909
Diffstat (limited to 'lldb/source/Host/linux')
-rw-r--r-- | lldb/source/Host/linux/Host.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Host/linux/HostInfoLinux.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Host/linux/Host.cpp b/lldb/source/Host/linux/Host.cpp index 70449d10327..8149d84a845 100644 --- a/lldb/source/Host/linux/Host.cpp +++ b/lldb/source/Host/linux/Host.cpp @@ -21,9 +21,9 @@ // Other libraries and framework includes #include "llvm/Support/ScopedPrinter.h" // Project includes -#include "lldb/Core/Log.h" #include "lldb/Target/Process.h" #include "lldb/Utility/Error.h" +#include "lldb/Utility/Log.h" #include "lldb/Core/DataBufferHeap.h" #include "lldb/Core/DataExtractor.h" diff --git a/lldb/source/Host/linux/HostInfoLinux.cpp b/lldb/source/Host/linux/HostInfoLinux.cpp index 1f39ca5944b..7782a5279bf 100644 --- a/lldb/source/Host/linux/HostInfoLinux.cpp +++ b/lldb/source/Host/linux/HostInfoLinux.cpp @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// #include "lldb/Host/linux/HostInfoLinux.h" -#include "lldb/Core/Log.h" +#include "lldb/Utility/Log.h" #include "llvm/Support/Threading.h" |