@@ -3360,9 +3360,8 @@ def NoSanitizeAddressDocs : Documentation {
33603360 // This function has multiple distinct spellings, and so it requires a custom
33613361 // heading to be specified. The most common spelling is sufficient.
33623362 let Heading = "no_sanitize_address, no_address_safety_analysis";
3363+ let Label = "langext-address_sanitizer";
33633364 let Content = [{
3364- .. _langext-address_sanitizer:
3365-
33663365Use ``__attribute__((no_sanitize_address))`` on a function or a global
33673366variable declaration to specify that address safety instrumentation
33683367(e.g. AddressSanitizer) should not be applied.
@@ -3372,9 +3371,8 @@ variable declaration to specify that address safety instrumentation
33723371def NoSanitizeThreadDocs : Documentation {
33733372 let Category = DocCatFunction;
33743373 let Heading = "no_sanitize_thread";
3374+ let Label = "langext-thread_sanitizer";
33753375 let Content = [{
3376- .. _langext-thread_sanitizer:
3377-
33783376Use ``__attribute__((no_sanitize_thread))`` on a function declaration to
33793377specify that checks for data races on plain (non-atomic) memory accesses should
33803378not be inserted by ThreadSanitizer. The function is still instrumented by the
@@ -3385,9 +3383,8 @@ tool to avoid false positives and provide meaningful stack traces.
33853383def NoSanitizeMemoryDocs : Documentation {
33863384 let Category = DocCatFunction;
33873385 let Heading = "no_sanitize_memory";
3386+ let Label = "langext-memory_sanitizer";
33883387 let Content = [{
3389- .. _langext-memory_sanitizer:
3390-
33913388Use ``__attribute__((no_sanitize_memory))`` on a function declaration to
33923389specify that checks for uninitialized memory should not be inserted
33933390(e.g. by MemorySanitizer). The function may still be instrumented by the tool
@@ -3398,9 +3395,8 @@ to avoid false positives in other places.
33983395def CFICanonicalJumpTableDocs : Documentation {
33993396 let Category = DocCatFunction;
34003397 let Heading = "cfi_canonical_jump_table";
3398+ let Label = "langext-cfi_canonical_jump_table";
34013399 let Content = [{
3402- .. _langext-cfi_canonical_jump_table:
3403-
34043400Use ``__attribute__((cfi_canonical_jump_table))`` on a function declaration to
34053401make the function's CFI jump table canonical. See :ref:`the CFI documentation
34063402<cfi-canonical-jump-tables>` for more details.
0 commit comments