diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-02-03 01:51:50 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-02-03 01:51:50 +0000 |
commit | 0be9ebbfbdc195c39631705fd26e0666fa30975d (patch) | |
tree | 4e40fd174a0118af37248b4515c08810621720d9 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | |
parent | 18fe6404f9bc379045f4bce801f1c7113cddc6a0 (diff) | |
download | bcm5719-llvm-0be9ebbfbdc195c39631705fd26e0666fa30975d.tar.gz bcm5719-llvm-0be9ebbfbdc195c39631705fd26e0666fa30975d.zip |
Add missing switch cases to silence warnings.
llvm-svn: 227931
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index feac4cfd350..99f445cb183 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -3018,6 +3018,7 @@ GDBRemoteCommunicationClient::SendGDBStoppointTypePacket (GDBStoppointType type, case eWatchpointWrite: m_supports_z2 = false; break; case eWatchpointRead: m_supports_z3 = false; break; case eWatchpointReadWrite: m_supports_z4 = false; break; + case eStoppointInvalid: return UINT8_MAX; } } } |