diff options
author | Fangrui Song <maskray@google.com> | 2019-05-16 08:37:32 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-05-16 08:37:32 +0000 |
commit | ddb93b637e44d28f5af6dc8633f89af28f4c6bad (patch) | |
tree | d4fa7b517d5d83dfe2449c65b47e3488c62c7292 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | |
parent | 3e92df3e39592f0a18b7bc7c66c0ca18cd621897 (diff) | |
download | bcm5719-llvm-ddb93b637e44d28f5af6dc8633f89af28f4c6bad.tar.gz bcm5719-llvm-ddb93b637e44d28f5af6dc8633f89af28f4c6bad.zip |
Simplify ArchSpec::IsMIPS()
llvm-svn: 360865
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp index 7bc698e9236..d095c7a057a 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp @@ -233,11 +233,7 @@ GDBRemoteCommunicationServerCommon::Handle_qHostInfo( if (host_arch.GetMachine() == llvm::Triple::aarch64 || host_arch.GetMachine() == llvm::Triple::aarch64_be || 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::mips || - host_arch.GetMachine() == llvm::Triple::mipsel) + host_arch.GetMachine() == llvm::Triple::armeb || host_arch.IsMIPS()) response.Printf("watchpoint_exceptions_received:before;"); else response.Printf("watchpoint_exceptions_received:after;"); |