[Lldb-commits] [lldb] [lldb] Print mangled names with verbose break list (PR #84071)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 5 13:30:40 PST 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 05390df497535b26879a7a96e03a76af26c8bcd3 0252a23a8a63acca1a51a9f838b6ace3f3b13cc1 -- lldb/source/Breakpoint/BreakpointLocation.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/source/Breakpoint/BreakpointLocation.cpp b/lldb/source/Breakpoint/BreakpointLocation.cpp
index 045ed145cc..329de71f93 100644
--- a/lldb/source/Breakpoint/BreakpointLocation.cpp
+++ b/lldb/source/Breakpoint/BreakpointLocation.cpp
@@ -526,7 +526,8 @@ void BreakpointLocation::GetDescription(Stream *s,
s->PutCString(sc.function->GetName().AsCString("<unknown>"));
s->EOL();
s->Indent("mangled function = ");
- s->PutCString(sc.function->GetMangled().GetMangledName().AsCString("<unknown>"));
+ s->PutCString(sc.function->GetMangled().GetMangledName().AsCString(
+ "<unknown>"));
}
if (sc.line_entry.line > 0) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/84071
More information about the lldb-commits
mailing list