On 10/23/21 2:47 PM, Philippe Mathieu-Daudé wrote:
+static bool trans_LDI(DisasContext *ctx, arg_msa_ldst *a) +{ + TCGv_i32 tdf; + TCGv_i32 twd; + TCGv_i32 timm; + + if (!check_msa_access(ctx)) { + return false; + }
Return true. I won't mention the return after check_msa_access again.
+ twd = tcg_const_i32(a->wd); + timm = tcg_const_i32(a->sa);
tcg_constant_i32. r~