[clang] [llvm] [MTE] Add an attribute to opt-in memory tagging of global variables while using fsanitize=memtag-globals (#166380) (PR #168535)
TarcĂsio Fischer via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 5 03:43:17 PST 2025
================
@@ -3655,6 +3655,16 @@ full list of supported sanitizer flags.
}];
}
+def ForceMemtagDocs : Documentation {
+ let Category = DocCatVariable;
+ let Content = [{
+Use the ``force_memtag`` attribute on a global variable declaration that also
+has the attribute section and the memory tag sanitizer is active to force the
+global variable to be MTE tagged. Global variables under sections are not
+tagged by default, so you need to explicitly opt-in using this attribute.
----------------
tarcisiofischer wrote:
I've added a note, but please feel free to reword, if you feel it's not good enough!
https://github.com/llvm/llvm-project/pull/168535
More information about the llvm-commits
mailing list