Skip to content

Commit

Permalink
tcg/loongarch64: Fix fallout from recent MO_Q renaming
Browse files Browse the repository at this point in the history
Apparently we were left behind; just renaming MO_Q to MO_UQ is enough.

Fixes: fc313c6 ("exec/memop: Adding signedness to quad definitions")
Signed-off-by: WANG Xuerui <git@xen0n.name>
Message-Id: <20220206162106.1092364-1-i.qemu@xen0n.name>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
xen0n authored and rth7680 committed Feb 8, 2022
1 parent c3e97f6 commit 7b17a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcg/loongarch64/tcg-target.c.inc
Expand Up @@ -871,7 +871,7 @@ static void tcg_out_qemu_ld_indexed(TCGContext *s, TCGReg rd, TCGReg rj,
case MO_SL:
tcg_out_opc_ldx_w(s, rd, rj, rk);
break;
case MO_Q:
case MO_UQ:
tcg_out_opc_ldx_d(s, rd, rj, rk);
break;
default:
Expand Down

0 comments on commit 7b17a47

Please sign in to comment.