[Lldb-commits] [lldb] [lldb] Create dependent modules in parallel (PR #114507)

via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 31 21:54:05 PDT 2024


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff d1b311d7d2258531decaea9556d2e96ce2433817 9a269fa83cea529f704c9eba339eac9987032155 --extensions cpp -- lldb/source/Target/Target.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp
index ef5d38fc79..ad38e6138c 100644
--- a/lldb/source/Target/Target.cpp
+++ b/lldb/source/Target/Target.cpp
@@ -1631,7 +1631,7 @@ void Target::SetExecutableModule(ModuleSP &executable_sp,
           std::lock_guard<std::mutex> guard(dependent_files_mutex);
           for (; i < dependent_files.GetSize(); i++)
             task_group.async(GetDependentModules,
-                            dependent_files.GetFileSpecAtIndex(i));
+                             dependent_files.GetFileSpecAtIndex(i));
         }
         task_group.wait();
       }

``````````

</details>


https://github.com/llvm/llvm-project/pull/114507


More information about the lldb-commits mailing list