summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
diff options
context:
space:
mode:
authorChaoren Lin <chaorenl@google.com>2015-02-03 01:51:50 +0000
committerChaoren Lin <chaorenl@google.com>2015-02-03 01:51:50 +0000
commit0be9ebbfbdc195c39631705fd26e0666fa30975d (patch)
tree4e40fd174a0118af37248b4515c08810621720d9 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
parent18fe6404f9bc379045f4bce801f1c7113cddc6a0 (diff)
downloadbcm5719-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.h')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
index d1b83894899..10af4cb5517 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
@@ -366,8 +366,8 @@ public:
case eWatchpointWrite: return m_supports_z2;
case eWatchpointRead: return m_supports_z3;
case eWatchpointReadWrite: return m_supports_z4;
+ case eStoppointInvalid: return false;
}
- return false;
}
uint8_t
SendGDBStoppointTypePacket (GDBStoppointType type, // Type of breakpoint or watchpoint
OpenPOWER on IntegriCloud