[Lldb-commits] [lldb] r230502 - Add missing "return" statements.
Hafiz Abid Qadeer
hafiz_abid at mentor.com
Wed Feb 25 08:01:13 PST 2015
Author: abidh
Date: Wed Feb 25 10:01:12 2015
New Revision: 230502
URL: http://llvm.org/viewvc/llvm-project?rev=230502&view=rev
Log:
Add missing "return" statements.
ExecutionContext::GetAddressByteSize() was calling GettAddressByteSize () on Target and Process class but was ignoring the return type. I have added the missing return.
No regression in the test suite. Committed as obvious.
Modified:
lldb/trunk/source/Target/ExecutionContext.cpp
Modified: lldb/trunk/source/Target/ExecutionContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/ExecutionContext.cpp?rev=230502&r1=230501&r2=230502&view=diff
==============================================================================
--- lldb/trunk/source/Target/ExecutionContext.cpp (original)
+++ lldb/trunk/source/Target/ExecutionContext.cpp Wed Feb 25 10:01:12 2015
@@ -249,9 +249,9 @@ uint32_t
ExecutionContext::GetAddressByteSize() const
{
if (m_target_sp && m_target_sp->GetArchitecture().IsValid())
- m_target_sp->GetArchitecture().GetAddressByteSize();
+ return m_target_sp->GetArchitecture().GetAddressByteSize();
if (m_process_sp)
- m_process_sp->GetAddressByteSize();
+ return m_process_sp->GetAddressByteSize();
return sizeof(void *);
}
More information about the lldb-commits
mailing list