diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2019-06-11 18:17:38 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2019-06-11 18:17:38 +0000 |
| commit | 89da04f7e8a7bb6826b79d539b009bb657c84482 (patch) | |
| tree | e56964c1cbd4fdc1178620187a1ea3595e02491b /source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h | |
| parent | c96e529e3b6d0efa504985bf5a6db1ac5e958fdf (diff) | |
Notes
Diffstat (limited to 'source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h')
| -rw-r--r-- | source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h b/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h index 9dcf82f50a45..2970326306e5 100644 --- a/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h +++ b/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h @@ -109,7 +109,8 @@ private: // Private member variables. mutable XStateType m_xstate_type; - FPR m_fpr; // Extended States Area, named FPR for historical reasons. + std::unique_ptr<FPR, llvm::FreeDeleter> + m_xstate; // Extended States Area, named FPR for historical reasons. struct iovec m_iovec; YMM m_ymm_set; MPX m_mpx_set; |
