diff options
author | Jim Ingham <jingham@apple.com> | 2016-02-18 23:58:45 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2016-02-18 23:58:45 +0000 |
commit | 7b71c0ba6cb3cab0bdbcc17cf944e779d2ff66e8 (patch) | |
tree | bb170ead497f0ef044d21420272959a53396d0eb /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
parent | faca2d83b13e00b76af481b91451bd9ad7da03fc (diff) | |
download | llvm-7b71c0ba6cb3cab0bdbcc17cf944e779d2ff66e8.zip llvm-7b71c0ba6cb3cab0bdbcc17cf944e779d2ff66e8.tar.gz llvm-7b71c0ba6cb3cab0bdbcc17cf944e779d2ff66e8.tar.bz2 |
Make sure code that is in the middle of figuring out the correct architecture
on attach uses the architecture it has figured out, rather than the Target's
architecture, which may not have been updated to the correct value yet.
<rdar://problem/24632895>
llvm-svn: 261279
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index b48edd8..70633e7 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -461,7 +461,7 @@ protected: // Query remote GDBServer for register information bool - GetGDBServerRegisterInfo (); + GetGDBServerRegisterInfo (ArchSpec &arch); // Query remote GDBServer for a detailed loaded library list Error |