forked from OSchip/llvm-project
[lldb] Fix FreeBSD Arm Process Plugin build
Add a missing include and some definitions in 7695332166
.
Patch by: Brooks Davis
Reviewed by: labath
Differential Revision: https://reviews.llvm.org/D88453
This commit is contained in:
parent
08c5720405
commit
f794160c6c
|
@ -14,6 +14,7 @@
|
|||
#include "ProcessMonitor.h"
|
||||
#include "RegisterContextPOSIXProcessMonitor_arm.h"
|
||||
#include "Plugins/Process/Utility/RegisterContextPOSIX_arm.h"
|
||||
#include "Plugins/Process/Utility/lldb-arm-register-enums.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
using namespace lldb;
|
||||
|
|
|
@ -70,6 +70,10 @@ protected:
|
|||
uint32_t NumSupportedHardwareWatchpoints();
|
||||
|
||||
private:
|
||||
RegisterInfoPOSIX_arm::GPR m_gpr_arm;
|
||||
|
||||
RegisterInfoPOSIX_arm::FPU m_fpr;
|
||||
|
||||
ProcessMonitor &GetMonitor();
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue