diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-06-05 14:36:55 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-06-05 16:06:40 -0400 |
| commit | 9c5640886d95cba73b10a59a43692c9bae4037fb (patch) | |
| tree | cd4f3894b7e870bcf6a11529873db4f31bca7e6c /src/check_decl.cpp | |
| parent | 97fd228f01fd406bbbe2a8321118f641c5d0d7e9 (diff) | |
Add `@(no_sanitize_memory)` proc attribute with MSan additions to `base:sanitizer`
Diffstat (limited to 'src/check_decl.cpp')
| -rw-r--r-- | src/check_decl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/check_decl.cpp b/src/check_decl.cpp index d53c3c6b7..c696fc4c1 100644 --- a/src/check_decl.cpp +++ b/src/check_decl.cpp @@ -1370,6 +1370,7 @@ gb_internal void check_proc_decl(CheckerContext *ctx, Entity *e, DeclInfo *d) { e->Procedure.has_instrumentation = has_instrumentation; e->Procedure.no_sanitize_address = ac.no_sanitize_address; + e->Procedure.no_sanitize_memory = ac.no_sanitize_memory; e->deprecated_message = ac.deprecated_message; e->warning_message = ac.warning_message; |