diff options
Diffstat (limited to 'inc/stage.h')
-rw-r--r-- | inc/stage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/stage.h b/inc/stage.h index 1afb8e5..834b941 100644 --- a/inc/stage.h +++ b/inc/stage.h @@ -136,7 +136,7 @@ class Stage } else if constexpr (std::is_same_v<T, std::array<signed int, V_R_LIMIT>>) { if (v < GPR_NUM || v >= GPR_NUM + V_NUM) { - throw std::out_of_range("Invalid vector register index"); + throw std::out_of_range("Invalid VRS index"); } return vrs[v % GPR_NUM]; } |