drc: forgot to set may_except
authornotaz <notasas@gmail.com>
Mon, 24 Feb 2025 23:28:47 +0000 (01:28 +0200)
committernotaz <notasas@gmail.com>
Mon, 24 Feb 2025 23:28:47 +0000 (01:28 +0200)
otherwise unneeded_reg[] thing breaks, can be seen with
Config.PreciseExceptions enabled in some games

libpcsxcore/new_dynarec/new_dynarec.c

index 453ceb3..0e08aa5 100644 (file)
@@ -6667,7 +6667,7 @@ static void force_intcall(int i)
   memset(&dops[i], 0, sizeof(dops[i]));
   dops[i].itype = INTCALL;
   dops[i].rs1 = CCREG;
-  dops[i].is_exception = 1;
+  dops[i].is_exception = dops[i].may_except = 1;
   cinfo[i].ba = -1;
 }