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/check_builtin.cpp | |
| parent | 208226dba29d46514c8c2b7a8fcd023f1ebf7bd8 (diff) | |
Add arithmetic operator support for simd vectors; Add `intrinsics.simd_and_not`
Diffstat (limited to 'src/check_builtin.cpp')
| -rw-r--r-- | src/check_builtin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/check_builtin.cpp b/src/check_builtin.cpp index 34b7d14e9..bfaa91cf8 100644 --- a/src/check_builtin.cpp +++ b/src/check_builtin.cpp @@ -464,6 +464,7 @@ bool check_builtin_simd_operation(CheckerContext *c, Operand *operand, Ast *call case BuiltinProc_simd_and: case BuiltinProc_simd_or: case BuiltinProc_simd_xor: + case BuiltinProc_simd_and_not: { Operand x = {}; Operand y = {}; |