Fix AArch64 watchpoint exception handling

http://reviews.llvm.org/D11987

llvm-svn: 245273
This commit is contained in:
Omair Javaid 2015-08-18 08:28:06 +00:00
parent d2c4c9b132
commit e68ee7f960
1 changed files with 3 additions and 1 deletions

View File

@ -181,7 +181,9 @@ GDBRemoteCommunicationServerCommon::Handle_qHostInfo (StringExtractorGDBRemote &
else else
response.Printf("watchpoint_exceptions_received:after;"); response.Printf("watchpoint_exceptions_received:after;");
#else #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) host_arch.GetMachine() == llvm::Triple::mips64el)
response.Printf("watchpoint_exceptions_received:before;"); response.Printf("watchpoint_exceptions_received:before;");
else else