| 921 | } |
| 922 | |
| 923 | ASMJIT_INLINE void new_vec512_array(OpArray& dst, size_t n, const char* name) noexcept { |
| 924 | new_reg_array(dst, n, TypeId::kInt32x16, name); |
| 925 | } |
| 926 | |
| 927 | ASMJIT_INLINE void new_vec512_array(OpArray& dst, size_t n, const char* prefix, const char* name) noexcept { |
| 928 | new_reg_array(dst, n, TypeId::kInt32x16, prefix, name); |
nothing calls this directly
no test coverage detected