diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-06-09 12:46:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-09 12:46:22 +0100 |
| commit | 87247b8bb787e53f7ca26fba1a11739844bf442d (patch) | |
| tree | 2415eb49e48ab985237ca61211e42cf1a668f2a6 /src/entity.cpp | |
| parent | b8ac7776494eb7c55828b11fa5a431ef2eb44197 (diff) | |
| parent | f8228a91d1823a2f586dcca5f5ff9f57d17dc92f (diff) | |
Merge pull request #5286 from Feoramund/no-san-mem
Add `@(no_sanitize_memory)` with 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; |