diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-04-21 23:00:58 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-04-21 23:00:58 +0000 |
commit | 6598431c7acadcf0f3dedd6853163209c14a2cc7 (patch) | |
tree | 81fb332e86dccfb9e6ca5b89fbe30ae7194c20f4 /lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp | |
parent | 2940bc82acb200f392ae85c462e634d4f4a81d5e (diff) | |
download | bcm5719-llvm-6598431c7acadcf0f3dedd6853163209c14a2cc7.tar.gz bcm5719-llvm-6598431c7acadcf0f3dedd6853163209c14a2cc7.zip |
Same issue as in D8685 but for i386.
llvm-svn: 235454
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp index 185ba26944f..0171da66a19 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp +++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp @@ -45,6 +45,13 @@ struct dbreg { /* Index 7: debug control */ }; +using FPR_i386 = FXSAVE; + +struct UserArea +{ + GPR gpr; + FPR_i386 i387; +}; #define DR_SIZE sizeof(uint32_t) #define DR_OFFSET(reg_index) \ |