diff options
| author | Zachary Turner <zturner@google.com> | 2017-04-06 21:28:29 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2017-04-06 21:28:29 +0000 |
| commit | 2f3df6137a506e4c78a94adff2f27b3abaf4a31f (patch) | |
| tree | 0f7c277caba9ffb16a1b8a447ebb33e69271847c /lldb/source/Plugins/Process/Windows | |
| parent | 1902b337e97fa794c87598fedecc0ad4a4a05969 (diff) | |
| download | bcm5719-llvm-2f3df6137a506e4c78a94adff2f27b3abaf4a31f.tar.gz bcm5719-llvm-2f3df6137a506e4c78a94adff2f27b3abaf4a31f.zip | |
iwyu fixes for lldbCore.
This adjusts header file includes for headers and source files
in Core. In doing so, one dependency cycle is eliminated
because all the includes from Core to that project were dead
includes anyway. In places where some files in other projects
were only compiling due to a transitive include from another
header, fixups have been made so that those files also include
the header they need. Tested on Windows and Linux, and plan
to address failures on OSX and FreeBSD after watching the
bots.
llvm-svn: 299714
Diffstat (limited to 'lldb/source/Plugins/Process/Windows')
| -rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt b/lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt index 6cf124a5f99..009a289bae3 100644 --- a/lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt +++ b/lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt @@ -27,6 +27,7 @@ add_lldb_library(lldbPluginProcessWindowsCommon PLUGIN lldbCore lldbHost lldbInterpreter + lldbSymbol lldbTarget ws2_32 rpcrt4 diff --git a/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp b/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp index 345b5730061..56a98a8eef6 100644 --- a/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp @@ -23,6 +23,7 @@ #include "lldb/Host/HostProcess.h" #include "lldb/Host/windows/HostThreadWindows.h" #include "lldb/Host/windows/windows.h" +#include "lldb/Symbol/ObjectFile.h" #include "lldb/Target/DynamicLoader.h" #include "lldb/Target/MemoryRegionInfo.h" #include "lldb/Target/StopInfo.h" |

