From: Aurelien Jarno Date: Wed, 4 Nov 2009 22:01:30 +0000 (+0100) Subject: tcg/ppc64,x86_64: fix constraints of op_qemu_st64 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=016b2b287d908ef39c3418c938b30895d59dc1ef;p=qemu.git tcg/ppc64,x86_64: fix constraints of op_qemu_st64 This op only takes two arguments, not two. Signed-off-by: Aurelien Jarno --- diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c index 1bb13e6b0e..a612e10bee 100644 --- a/tcg/ppc64/tcg-target.c +++ b/tcg/ppc64/tcg-target.c @@ -1499,7 +1499,7 @@ static const TCGTargetOpDef ppc_op_defs[] = { { INDEX_op_qemu_st8, { "S", "S" } }, { INDEX_op_qemu_st16, { "S", "S" } }, { INDEX_op_qemu_st32, { "S", "S" } }, - { INDEX_op_qemu_st64, { "S", "S", "S" } }, + { INDEX_op_qemu_st64, { "S", "S" } }, { INDEX_op_ext8s_i32, { "r", "r" } }, { INDEX_op_ext16s_i32, { "r", "r" } }, diff --git a/tcg/x86_64/tcg-target.c b/tcg/x86_64/tcg-target.c index 5c829e76e7..23390914d2 100644 --- a/tcg/x86_64/tcg-target.c +++ b/tcg/x86_64/tcg-target.c @@ -1387,7 +1387,7 @@ static const TCGTargetOpDef x86_64_op_defs[] = { { INDEX_op_qemu_st8, { "L", "L" } }, { INDEX_op_qemu_st16, { "L", "L" } }, { INDEX_op_qemu_st32, { "L", "L" } }, - { INDEX_op_qemu_st64, { "L", "L", "L" } }, + { INDEX_op_qemu_st64, { "L", "L" } }, { -1 }, };