Skip to content

Commit 48c2703

Browse files
committed
Run GCF
1 parent 433851a commit 48c2703

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

lldb/source/Core/DynamicLoader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ ModuleSP DynamicLoader::GetTargetExecutable() {
8383
ModuleSpec module_spec(executable->GetFileSpec(),
8484
executable->GetArchitecture());
8585
auto module_sp = std::make_shared<Module>(module_spec);
86-
// If we're a coredump and we already have a main executable, we don't
86+
// If we're a coredump and we already have a main executable, we don't
8787
// need to reload the module list that target already has
8888
if (!m_process->IsLiveDebugSession()) {
8989
return executable;

lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -545,12 +545,12 @@ void ProcessMinidump::ReadModuleList() {
545545
name);
546546
module_sp = Module::CreateModuleFromObjectFile<ObjectFilePlaceholder>(
547547
module_spec, load_addr, load_size);
548-
// If we haven't loaded a main executable yet, set the first module to be
549-
// main executable
550-
if (!GetTarget().GetExecutableModule())
551-
GetTarget().SetExecutableModule(module_sp);
552-
else
553-
GetTarget().GetImages().Append(module_sp, true /* notify */);
548+
// If we haven't loaded a main executable yet, set the first module to be
549+
// main executable
550+
if (!GetTarget().GetExecutableModule())
551+
GetTarget().SetExecutableModule(module_sp);
552+
else
553+
GetTarget().GetImages().Append(module_sp, true /* notify */);
554554
}
555555

556556
bool load_addr_changed = false;

lldb/source/Target/Process.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6540,8 +6540,8 @@ static void AddRegion(const MemoryRegionInfo &region, bool try_dirty_pages,
65406540
}
65416541

65426542
static void AddSegmentRegisterSections(Process &process, ThreadSP &thread_sp,
6543-
CoreFileMemoryRanges &ranges,
6544-
lldb::addr_t range_end) {
6543+
CoreFileMemoryRanges &ranges,
6544+
lldb::addr_t range_end) {
65456545
lldb::RegisterContextSP reg_ctx = thread_sp->GetRegisterContext();
65466546
if (!reg_ctx)
65476547
return;

0 commit comments

Comments
 (0)