From b1ceac2c2a72b948f912450fd4ca741ac1bd8179 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Thu, 13 Feb 2025 19:41:29 +0100 Subject: [PATCH] small correction for vector_functions --- src/vm/vector_functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/vector_functions.cpp b/src/vm/vector_functions.cpp index 1a1ca01..dbf2436 100644 --- a/src/vm/vector_functions.cpp +++ b/src/vm/vector_functions.cpp @@ -74,7 +74,7 @@ double vtype_t::lmul() { int8_t signed_vlmul = (vlmul >> 2) ? 0b11111000 | vlmul : vlmul; return pow(2, signed_vlmul); } -bool vmask_view::operator[](size_t idx) { +bool vmask_view::operator[](size_t idx) const { assert(idx < elem_count); return *(start + idx / 8) & (1U << (idx % 8)); }