drc: ifdef out one more 64bit instruction
authornotaz <notasas@gmail.com>
Mon, 27 Jun 2011 21:38:21 +0000 (00:38 +0300)
committernotaz <notasas@gmail.com>
Thu, 7 Jul 2011 21:15:20 +0000 (00:15 +0300)
this is relevant when compiling trash.

libpcsxcore/new_dynarec/new_dynarec.c

index d837138..ab90fda 100644 (file)
@@ -8251,7 +8251,9 @@ int new_recompile_block(int addr)
       case 0x24: strcpy(insn[i],"LBU"); type=LOAD; break;
       case 0x25: strcpy(insn[i],"LHU"); type=LOAD; break;
       case 0x26: strcpy(insn[i],"LWR"); type=LOADLR; break;
+#ifndef FORCE32
       case 0x27: strcpy(insn[i],"LWU"); type=LOAD; break;
+#endif
       case 0x28: strcpy(insn[i],"SB"); type=STORE; break;
       case 0x29: strcpy(insn[i],"SH"); type=STORE; break;
       case 0x2A: strcpy(insn[i],"SWL"); type=STORELR; break;