diff options
author | Omair Javaid <omair.javaid@linaro.org> | 2015-08-18 08:28:06 +0000 |
---|---|---|
committer | Omair Javaid <omair.javaid@linaro.org> | 2015-08-18 08:28:06 +0000 |
commit | e68ee7f960fe75d2a22570f6bc08aff9e807401e (patch) | |
tree | 32312a44db97f44bd9dcd832d8180b173047b0de | |
parent | d2c4c9b132e1f819f2207a607fda794a7d2e6595 (diff) | |
download | bcm5719-llvm-e68ee7f960fe75d2a22570f6bc08aff9e807401e.tar.gz bcm5719-llvm-e68ee7f960fe75d2a22570f6bc08aff9e807401e.zip |
Fix AArch64 watchpoint exception handling
http://reviews.llvm.org/D11987
llvm-svn: 245273
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp index 24bc72ea1ea..8a00e616262 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp @@ -181,7 +181,9 @@ GDBRemoteCommunicationServerCommon::Handle_qHostInfo (StringExtractorGDBRemote & else response.Printf("watchpoint_exceptions_received:after;"); #else - if (host_arch.GetMachine() == llvm::Triple::mips64 || + if (host_arch.GetMachine() == llvm::Triple::aarch64 || + host_arch.GetMachine() == llvm::Triple::aarch64_be || + host_arch.GetMachine() == llvm::Triple::mips64 || host_arch.GetMachine() == llvm::Triple::mips64el) response.Printf("watchpoint_exceptions_received:before;"); else |