[Lldb-commits] [lldb] [LLDB] Make 'process load' take remote os path delimiter into account (PR #98690)

via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 12 13:25:02 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 73dad7a765226bd7ade98f85d050e80f411f6dad 98b75927878e35ca556ecbbecb1125621a63fea9 --extensions cpp -- lldb/source/Commands/CommandObjectProcess.cpp
``````````

</details>

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

``````````diff
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp
index bdcd58c0da..8685d57615 100644
--- a/lldb/source/Commands/CommandObjectProcess.cpp
+++ b/lldb/source/Commands/CommandObjectProcess.cpp
@@ -950,7 +950,8 @@ public:
                           ExecutionContext *execution_context) override {
       Status error;
       const int short_option = m_getopt_table[option_idx].val;
-      ArchSpec arch = execution_context->GetProcessPtr()->GetSystemArchitecture();
+      ArchSpec arch =
+          execution_context->GetProcessPtr()->GetSystemArchitecture();
       switch (short_option) {
       case 'i':
         do_install = true;

``````````

</details>


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


More information about the lldb-commits mailing list