[LLDB] Adding mips32 in the list of archs with watchpoint_exceptions_received=before

llvm-svn: 250272
This commit is contained in:
Mohit K. Bhakkad 2015-10-14 05:42:11 +00:00
parent cd875efa78
commit 5380a8bb28
1 changed files with 3 additions and 1 deletions

View File

@ -186,7 +186,9 @@ GDBRemoteCommunicationServerCommon::Handle_qHostInfo (StringExtractorGDBRemote &
host_arch.GetMachine() == llvm::Triple::arm ||
host_arch.GetMachine() == llvm::Triple::armeb ||
host_arch.GetMachine() == llvm::Triple::mips64 ||
host_arch.GetMachine() == llvm::Triple::mips64el)
host_arch.GetMachine() == llvm::Triple::mips64el ||
host_arch.GetMachine() == llvm::Triple::mips ||
host_arch.GetMachine() == llvm::Triple::mipsel)
response.Printf("watchpoint_exceptions_received:before;");
else
response.Printf("watchpoint_exceptions_received:after;");