diff options
| author | gingerBill <bill@gingerbill.org> | 2019-11-02 21:08:51 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-11-02 21:08:51 +0000 |
| commit | dfb3101ecf59797884cb959b3bfeda49ccfa3223 (patch) | |
| tree | 999934dda442dbe83526fc8c1843170407a401ad /src/types.cpp | |
| parent | e3d3a81617dd78a9b193bbc07f2a29315774ff57 (diff) | |
SOA Struct support `intrinsics.soa_struct`
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp index bef69ee30..6fab6643e 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -129,6 +129,9 @@ struct TypeStruct { bool is_raw_union; bool is_polymorphic; bool is_poly_specialized; + bool is_soa; + Type *soa_elem; + i64 soa_count; }; struct TypeUnion { |