summaryrefslogtreecommitdiff
path: root/tcg/ppc64
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2009-11-04 23:01:30 +0100
committerAurelien Jarno <aurelien@aurel32.net>2009-11-24 19:51:12 +0100
commit016b2b287d908ef39c3418c938b30895d59dc1ef (patch)
tree2d69e245a464308367e82125d4eb249bcd9796a2 /tcg/ppc64
parente92734555f5013672c23c419b7361d7142393ba3 (diff)
downloadqemu-016b2b287d908ef39c3418c938b30895d59dc1ef.tar.gz
tcg/ppc64,x86_64: fix constraints of op_qemu_st64
This op only takes two arguments, not two. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/ppc64')
-rw-r--r--tcg/ppc64/tcg-target.c2
1 files changed, 1 insertions, 1 deletions
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" } },