[Lldb-commits] [lldb] [lldb] Implement CLI support for reverse-continue (PR #132783)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 24 10:19:04 PDT 2025
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 00cb966209955878cee903068333d4d2d4f7b259 e6d07af9dba86a9a46938fe83e3518134ab9fc6a --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 aaa9ffeeea..bed81ef0fa 100644
--- a/lldb/source/Commands/CommandObjectProcess.cpp
+++ b/lldb/source/Commands/CommandObjectProcess.cpp
@@ -472,7 +472,7 @@ protected:
case 'F':
if (m_base_direction == lldb::RunDirection::eRunReverse) {
error = Status::FromErrorString(
- "cannot specify both 'forward' and 'reverse'");
+ "cannot specify both 'forward' and 'reverse'");
break;
}
m_base_direction = lldb::RunDirection::eRunForward;
@@ -480,7 +480,7 @@ protected:
case 'R':
if (m_base_direction == lldb::RunDirection::eRunForward) {
error = Status::FromErrorString(
- "cannot specify both 'forward' and 'reverse'");
+ "cannot specify both 'forward' and 'reverse'");
break;
}
m_base_direction = lldb::RunDirection::eRunReverse;
``````````
</details>
https://github.com/llvm/llvm-project/pull/132783
More information about the lldb-commits
mailing list