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/Core/Scalar.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'lldb/source/Core/Scalar.cpp') diff --git a/lldb/source/Core/Scalar.cpp b/lldb/source/Core/Scalar.cpp index 4120d3263be..5a1ad37819d 100644 --- a/lldb/source/Core/Scalar.cpp +++ b/lldb/source/Core/Scalar.cpp @@ -2630,6 +2630,7 @@ Scalar::ExtractBitfield (uint32_t bit_size, case e_double: result = SignedBits ((uint64_t )m_float.convertToDouble(), msbit, lsbit); m_float = llvm::APFloat((double_t)result); + return true; case e_long_double: m_integer = m_float.bitcastToAPInt(); result = SignedBits (*m_integer.getRawData(), msbit, lsbit); -- cgit v1.2.3