diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2018-05-26 14:59:14 +0000 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2018-05-26 14:59:14 +0000 |
| commit | 02d4ff44986c03c96198aea9bbb17d4b72a4fb9f (patch) | |
| tree | 145c774b4733c091779ffbd867ebf213e0788a8c /lldb/source/Plugins/Process/Utility | |
| parent | 0efdcdfbfcf8a99a14549f28bc4bf1a2815b950d (diff) | |
| download | bcm5719-llvm-02d4ff44986c03c96198aea9bbb17d4b72a4fb9f.tar.gz bcm5719-llvm-02d4ff44986c03c96198aea9bbb17d4b72a4fb9f.zip | |
Add missing includes to some LLDB headers.
Summary: When compiling with modules, these missing includes cause the build to fail (as the header can't be compiled into a module).
Subscribers: ki.stfu, lldb-commits
Differential Revision: https://reviews.llvm.org/D47412
llvm-svn: 333345
Diffstat (limited to 'lldb/source/Plugins/Process/Utility')
| -rw-r--r-- | lldb/source/Plugins/Process/Utility/InstructionUtils.h | 3 | ||||
| -rw-r--r-- | lldb/source/Plugins/Process/Utility/UnwindLLDB.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/Utility/InstructionUtils.h b/lldb/source/Plugins/Process/Utility/InstructionUtils.h index e422a96200c..186d525ce49 100644 --- a/lldb/source/Plugins/Process/Utility/InstructionUtils.h +++ b/lldb/source/Plugins/Process/Utility/InstructionUtils.h @@ -10,6 +10,9 @@ #ifndef lldb_InstructionUtils_h_ #define lldb_InstructionUtils_h_ +#include <cassert> +#include <cstdint> + // Common utilities for manipulating instruction bit fields. namespace lldb_private { diff --git a/lldb/source/Plugins/Process/Utility/UnwindLLDB.h b/lldb/source/Plugins/Process/Utility/UnwindLLDB.h index 3f84649aa05..3d1f85a3dec 100644 --- a/lldb/source/Plugins/Process/Utility/UnwindLLDB.h +++ b/lldb/source/Plugins/Process/Utility/UnwindLLDB.h @@ -17,6 +17,7 @@ // Other libraries and framework includes // Project includes #include "lldb/Symbol/FuncUnwinders.h" +#include "lldb/Symbol/SymbolContext.h" #include "lldb/Symbol/UnwindPlan.h" #include "lldb/Target/RegisterContext.h" #include "lldb/Target/Unwind.h" |

