Add #simd[N]rawptr support

This commit is contained in:
gingerBill
2024-08-05 12:04:36 +01:00
parent 7e0fa795e4
commit a06cb8ba46
2 changed files with 4 additions and 1 deletions

View File

@@ -2091,6 +2091,9 @@ gb_internal bool is_type_valid_vector_elem(Type *t) {
if (is_type_boolean(t)) {
return true;
}
if (t->Basic.kind == Basic_rawptr) {
return true;
}
}
return false;
}