Remove unused variable.

clang static analyzer fixit.

llvm-svn: 219904
This commit is contained in:
Jason Molenda
2014-10-16 07:41:32 +00:00
parent ba7add3a80
commit 5cf1e237f0

View File

@@ -5092,7 +5092,6 @@ ObjectFileMachO::SetLoadAddress (Target &target,
lldb::addr_t value,
bool value_is_offset)
{
bool changed = false;
ModuleSP module_sp = GetModule();
if (module_sp)
{
@@ -5196,10 +5195,9 @@ ObjectFileMachO::SetLoadAddress (Target &target,
}
}
}
changed = num_loaded_sections > 0;
return num_loaded_sections > 0;
}
return changed;
return false;
}
bool