On 10/14/24 03:48, Manos Pitsidianakis wrote:
+static bool trans_DSB_nXS(DisasContext *ctx, arg_DSB_nXS *a) +{ + tcg_gen_mb(TCG_BAR_SC | TCG_MO_ALL); + return true; +}
This is missing the feature test:
if (!dc_isar_feature(aa64_xs, ctx)) { return false; } r~