From 016b2b287d908ef39c3418c938b30895d59dc1ef Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Wed, 4 Nov 2009 23:01:30 +0100 Subject: [PATCH] tcg/ppc64,x86_64: fix constraints of op_qemu_st64 This op only takes two arguments, not two. Signed-off-by: Aurelien Jarno --- tcg/ppc64/tcg-target.c | 2 +- tcg/x86_64/tcg-target.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c index 1bb13e6..a612e10 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 5c829e7..2339091 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 }, }; -- 2.7.4