在 2023/9/7 下午4:31, Song Gao 写道:
+static bool gen_xvaddsub_q(DisasContext *ctx, arg_vvv *a, + void (*func)(TCGv_i64, TCGv_i64, TCGv_i64, + TCGv_i64, TCGv_i64, TCGv_i64)) +{ + if (!check_vec(ctx, 32)) { + return true; + } + return gen_vaddsub_q_vl(ctx, a, 16, func); +}
Typo, 16->32, I will correct it on v6.
Thanks. Song Gao