From cec91ef92169483fbcc85c78a65e00a6fda1c35b Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Fri, 26 Feb 2016 01:20:20 +0000 Subject: Fix all of the unannotated switch cases to annotate the fall through or do the right thing and break. llvm-svn: 261950 --- lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp') diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp index 07c4be1..7c75cc1 100644 --- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp +++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp @@ -5120,6 +5120,7 @@ ObjectFileMachO::GetEntryPointAddress () start_address = text_segment_sp->GetFileAddress() + entryoffset; } } + break; default: break; -- cgit v1.1