]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg/s390x: Mask TCGMemOp appropriately for indexing
authorAurelien Jarno <aurelien@aurel32.net>
Thu, 30 Jul 2015 20:13:26 +0000 (22:13 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Sat, 1 Aug 2015 07:39:37 +0000 (09:39 +0200)
Commit 2b7ec66f fixed TCGMemOp masking following the MO_AMASK addition,
but two cases were forgotten in the TCG S390 backend.

Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
tcg/s390/tcg-target.c

index 921991ebfa518181dc095df6bb20b16350f5f063..aa718eca0c57afe4067a544fff348cd9cfe43607 100644 (file)
@@ -1390,7 +1390,7 @@ static void tcg_out_call(TCGContext *s, tcg_insn_unit *dest)
 static void tcg_out_qemu_ld_direct(TCGContext *s, TCGMemOp opc, TCGReg data,
                                    TCGReg base, TCGReg index, int disp)
 {
-    switch (opc) {
+    switch (opc & (MO_SSIZE | MO_BSWAP)) {
     case MO_UB:
         tcg_out_insn(s, RXY, LLGC, data, base, index, disp);
         break;
@@ -1449,7 +1449,7 @@ static void tcg_out_qemu_ld_direct(TCGContext *s, TCGMemOp opc, TCGReg data,
 static void tcg_out_qemu_st_direct(TCGContext *s, TCGMemOp opc, TCGReg data,
                                    TCGReg base, TCGReg index, int disp)
 {
-    switch (opc) {
+    switch (opc & (MO_SIZE | MO_BSWAP)) {
     case MO_UB:
         if (disp >= 0 && disp < 0x1000) {
             tcg_out_insn(s, RX, STC, data, base, index, disp);