diff --git a/src/vm/vector_functions.cpp b/src/vm/vector_functions.cpp index 3c3623f..556f0ec 100644 --- a/src/vm/vector_functions.cpp +++ b/src/vm/vector_functions.cpp @@ -93,8 +93,9 @@ uint64_t vector_load_store(void* core, std::function 0); assert((elem_count & (elem_count - 1)) == 0); // check that elem_count is power of 2 - assert(elem_count <= VLEN / 8); + assert(elem_count <= VLEN * RFS / 8); unsigned eew = elem_byte_size * 8; unsigned emul_stride = EMUL_pow <= 0 ? 1 : pow(2, EMUL_pow); assert(emul_stride * segment_size <= 8);