diff options
| author | Mohit K. Bhakkad <mohit.bhakkad@gmail.com> | 2015-10-14 05:42:11 +0000 |
|---|---|---|
| committer | Mohit K. Bhakkad <mohit.bhakkad@gmail.com> | 2015-10-14 05:42:11 +0000 |
| commit | 5380a8bb283b1a5ba0f0deee5905915ad438ba6e (patch) | |
| tree | 0a258a74225a804bf77e7bcdcae5229492fa1135 | |
| parent | cd875efa7860864d19a7efc848394a16fbd9d73a (diff) | |
| download | bcm5719-llvm-5380a8bb283b1a5ba0f0deee5905915ad438ba6e.tar.gz bcm5719-llvm-5380a8bb283b1a5ba0f0deee5905915ad438ba6e.zip | |
[LLDB] Adding mips32 in the list of archs with watchpoint_exceptions_received=before
llvm-svn: 250272
| -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 924c4beaf28..cd6e1389b2a 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp @@ -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;"); |

