diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-05-01 12:16:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-01 12:16:10 +0100 |
| commit | 777c33a9a1b570a15b45adc3a7f0013946ffe6a5 (patch) | |
| tree | d3f69891bfafcbf78a3ff287e32504611d880788 /src/entity.cpp | |
| parent | 2d8ae2d23c8cf7c9b76698e80aaf6ffd139254ac (diff) | |
| parent | 5c73b4ef5829f0d722fdbb8ba8d84709563505a0 (diff) | |
Merge pull request #5102 from Lperlind/attribute-no-sanitize-address
Add attribute @(no_sanitize_address)
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 b2148aa7b..9946a3a5f 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -258,6 +258,7 @@ struct Entity { bool is_memcpy_like : 1; bool uses_branch_location : 1; bool is_anonymous : 1; + bool no_sanitize_address : 1; } Procedure; struct { Array<Entity *> entities; |