[Lldb-commits] [lldb] [lldb] Add `process launch --memory-tagging` option (PR #162944)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 10 17:03:12 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 origin/main HEAD --extensions h,cpp -- lldb/include/lldb/lldb-enumerations.h lldb/source/Commands/CommandOptionsProcessLaunch.cpp
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/include/lldb/lldb-enumerations.h b/lldb/include/lldb/lldb-enumerations.h
index e21880e8d..b6a8954fc 100644
--- a/lldb/include/lldb/lldb-enumerations.h
+++ b/lldb/include/lldb/lldb-enumerations.h
@@ -130,8 +130,8 @@ FLAGS_ENUM(LaunchFlags){
eLaunchFlagInheritTCCFromParent =
(1u << 12), ///< Don't make the inferior responsible for its own TCC
///< permissions but instead inherit them from its parent.
- eLaunchFlagMemoryTagging =
- (1u << 13), ///< Launch with memory tagging (MTE).
+ eLaunchFlagMemoryTagging = (1u
+ << 13), ///< Launch with memory tagging (MTE).
};
/// Thread Run Modes.
``````````
</details>
https://github.com/llvm/llvm-project/pull/162944
More information about the lldb-commits
mailing list