diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-02-20 08:47:48 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-20 08:47:48 +0000 |
| commit | 82ddf358d0a319ba0eefd838bb80cf526daf9dcb (patch) | |
| tree | 0d432e0952d0c207f186407bd06a610e7e74e6dc /src/entity.cpp | |
| parent | f0b1357132de38e9dad0964ebe4c21db1ed4f430 (diff) | |
| parent | 29456bcdea6e9567a9655e49a948f9e57920ff7a (diff) | |
Merge pull request #4855 from odin-lang/bill/canonical-type-hashing
Deterministic Canonical Naming for Link Names and Types
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 d137a8674..b2148aa7b 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -257,6 +257,7 @@ struct Entity { bool has_instrumentation : 1; bool is_memcpy_like : 1; bool uses_branch_location : 1; + bool is_anonymous : 1; } Procedure; struct { Array<Entity *> entities; |