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/entity.cpp | |
| parent | 97fd228f01fd406bbbe2a8321118f641c5d0d7e9 (diff) | |
Add `@(no_sanitize_memory)` proc attribute with MSan additions to `base:sanitizer`
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp index a16779419..6c0aa6ace 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -263,6 +263,7 @@ struct Entity { bool uses_branch_location : 1; bool is_anonymous : 1; bool no_sanitize_address : 1; + bool no_sanitize_memory : 1; } Procedure; struct { Array<Entity *> entities; |