Skip to content

Commit 8f486e8

Browse files
author
Tom Yang
committed
remove small erroneous formatting change in wasmdyld
Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags:
1 parent 26f9f93 commit 8f486e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Plugins/DynamicLoader/wasm-DYLD/DynamicLoaderWasmDYLD.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,8 @@ lldb::ModuleSP DynamicLoaderWasmDYLD::LoadModuleAtAddress(
6969
const lldb_private::FileSpec &file, lldb::addr_t link_map_addr,
7070
lldb::addr_t base_addr, bool base_addr_is_offset) {
7171
if (ModuleSP module_sp = DynamicLoader::LoadModuleAtAddress(
72-
file, link_map_addr, base_addr, base_addr_is_offset)) {
72+
file, link_map_addr, base_addr, base_addr_is_offset))
7373
return module_sp;
74-
}
7574

7675
if (ModuleSP module_sp = m_process->ReadModuleFromMemory(file, base_addr)) {
7776
UpdateLoadedSections(module_sp, link_map_addr, base_addr, false);

0 commit comments

Comments
 (0)