[Lldb-commits] [lldb] [LLDB] ASanLibsanitizers Use `sanitizers_address_on_report` breakpoint (PR #84583)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 8 15:34:05 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 cb6ff746e0c7b9218b6f5c11db44162cacd623a4 aa8f732f4d6d2cdae5b32462b7be8f3afda512fc -- lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/InstrumentationRuntimeASanLibsanitizers.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/InstrumentationRuntimeASanLibsanitizers.cpp b/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/InstrumentationRuntimeASanLibsanitizers.cpp
index e095d3e6b2..dd936fc07f 100644
--- a/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/InstrumentationRuntimeASanLibsanitizers.cpp
+++ b/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/InstrumentationRuntimeASanLibsanitizers.cpp
@@ -93,8 +93,7 @@ void InstrumentationRuntimeASanLibsanitizers::Activate() {
lldb::ModuleSP module_sp = GetRuntimeModuleSP();
Breakpoint *breakpoint = ReportRetriever::SetupBreakpoint(
- module_sp, process_sp,
- ConstString("_sanitizers_address_on_report"));
+ module_sp, process_sp, ConstString("_sanitizers_address_on_report"));
if (!breakpoint) {
breakpoint = ReportRetriever::SetupBreakpoint(
``````````
</details>
https://github.com/llvm/llvm-project/pull/84583
More information about the lldb-commits
mailing list