diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-25 17:54:05 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-25 17:54:05 +0100 |
| commit | 3b54015e80316af8c13fd83f615b64b611508275 (patch) | |
| tree | c759df69ddf1cb11c8966a431a02cf5d16258b2f /src/types.cpp | |
| parent | b032d5af87ebe8d9dee28698cfa570d3628e58e5 (diff) | |
Mock out simd intrinsics
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.cpp b/src/types.cpp index d5ba1a531..755f78f1c 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -1932,7 +1932,7 @@ bool is_type_valid_vector_elem(Type *t) { return false; } if (is_type_integer(t)) { - return true; + return !is_type_integer_128bit(t); } if (is_type_float(t)) { return true; |