From: Richard Henderson Date: Mon, 17 Mar 2014 18:10:59 +0000 (-0700) Subject: tcg-sparc: Accept stores of zero X-Git-Tag: qemu-xen-4.6.0-rc1~486^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ebd0c614d77898741c1ec70b5c5ca3f263253da3;p=qemu-upstream-4.6-testing.git tcg-sparc: Accept stores of zero Signed-off-by: Richard Henderson --- diff --git a/tcg/sparc/tcg-target.c b/tcg/sparc/tcg-target.c index 1526f2c2e..5468ff5c1 100644 --- a/tcg/sparc/tcg-target.c +++ b/tcg/sparc/tcg-target.c @@ -1470,8 +1470,8 @@ static const TCGTargetOpDef sparc_op_defs[] = { { INDEX_op_qemu_ld_i32, { "r", "A" } }, { INDEX_op_qemu_ld_i64, { "R", "A" } }, - { INDEX_op_qemu_st_i32, { "s", "A" } }, - { INDEX_op_qemu_st_i64, { "S", "A" } }, + { INDEX_op_qemu_st_i32, { "sZ", "A" } }, + { INDEX_op_qemu_st_i64, { "SZ", "A" } }, { -1 }, };