@@ -3360,9 +3360,8 @@ def NoSanitizeAddressDocs : Documentation {
3360
3360
// This function has multiple distinct spellings, and so it requires a custom
3361
3361
// heading to be specified. The most common spelling is sufficient.
3362
3362
let Heading = "no_sanitize_address, no_address_safety_analysis";
3363
+ let Label = "langext-address_sanitizer";
3363
3364
let Content = [{
3364
- .. _langext-address_sanitizer:
3365
-
3366
3365
Use ``__attribute__((no_sanitize_address))`` on a function or a global
3367
3366
variable declaration to specify that address safety instrumentation
3368
3367
(e.g. AddressSanitizer) should not be applied.
@@ -3372,9 +3371,8 @@ variable declaration to specify that address safety instrumentation
3372
3371
def NoSanitizeThreadDocs : Documentation {
3373
3372
let Category = DocCatFunction;
3374
3373
let Heading = "no_sanitize_thread";
3374
+ let Label = "langext-thread_sanitizer";
3375
3375
let Content = [{
3376
- .. _langext-thread_sanitizer:
3377
-
3378
3376
Use ``__attribute__((no_sanitize_thread))`` on a function declaration to
3379
3377
specify that checks for data races on plain (non-atomic) memory accesses should
3380
3378
not 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.
3385
3383
def NoSanitizeMemoryDocs : Documentation {
3386
3384
let Category = DocCatFunction;
3387
3385
let Heading = "no_sanitize_memory";
3386
+ let Label = "langext-memory_sanitizer";
3388
3387
let Content = [{
3389
- .. _langext-memory_sanitizer:
3390
-
3391
3388
Use ``__attribute__((no_sanitize_memory))`` on a function declaration to
3392
3389
specify that checks for uninitialized memory should not be inserted
3393
3390
(e.g. by MemorySanitizer). The function may still be instrumented by the tool
@@ -3398,9 +3395,8 @@ to avoid false positives in other places.
3398
3395
def CFICanonicalJumpTableDocs : Documentation {
3399
3396
let Category = DocCatFunction;
3400
3397
let Heading = "cfi_canonical_jump_table";
3398
+ let Label = "langext-cfi_canonical_jump_table";
3401
3399
let Content = [{
3402
- .. _langext-cfi_canonical_jump_table:
3403
-
3404
3400
Use ``__attribute__((cfi_canonical_jump_table))`` on a function declaration to
3405
3401
make the function's CFI jump table canonical. See :ref:`the CFI documentation
3406
3402
<cfi-canonical-jump-tables>` for more details.
0 commit comments