On 10/27/21 11:07 AM, Philippe Mathieu-Daudé wrote:
+static bool trans_FILL(DisasContext *ctx, arg_msa_r *a)
+{
+ if (TARGET_LONG_BITS != 64 && a->df == DF_DOUBLE) {
+ /* Double format valid only for MIPS64 */
+ gen_reserved_instruction(ctx);
+ return true;
+ }
Here you have the option to return false. But either way, Reviewed-by: Richard Henderson <[email protected]> r~
