diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-26 17:09:46 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-26 17:09:46 +0100 |
| commit | d0e8a735bae52eaa7d1d852953da721071571020 (patch) | |
| tree | 76d4fdf971f7a8a4f85992e228c01b53a8b92fbe /src/types.cpp | |
| parent | 208226dba29d46514c8c2b7a8fcd023f1ebf7bd8 (diff) | |
Add arithmetic operator support for simd vectors; Add `intrinsics.simd_and_not`
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 6f61015d3..ad83e0568 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -2306,6 +2306,9 @@ bool is_type_comparable(Type *t) { } } return true; + + case Type_SimdVector: + return true; } return false; } |