forked from OSchip/llvm-project
[LLDB] Adding mips32 in the list of archs with watchpoint_exceptions_received=before
llvm-svn: 250272
This commit is contained in:
parent
cd875efa78
commit
5380a8bb28
|
@ -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;");
|
||||
|
|
Loading…
Reference in New Issue