tcg/ppc64,x86_64: fix constraints of op_qemu_st64
authorAurelien Jarno <aurelien@aurel32.net>
Wed, 4 Nov 2009 22:01:30 +0000 (23:01 +0100)
committerAurelien Jarno <aurelien@aurel32.net>
Tue, 24 Nov 2009 18:51:12 +0000 (19:51 +0100)
This op only takes two arguments, not two.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
tcg/ppc64/tcg-target.c
tcg/x86_64/tcg-target.c

index 1bb13e6b0e12c947fca7562b0d708813e098ea0c..a612e10bee856db0777690cdbdc8233430f220bb 100644 (file)
@@ -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" } },
index 5c829e76e7661a64ac76240d1b05cc2d38e8fc93..23390914d2973b149d88a43569d154962048c567 100644 (file)
@@ -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 },
 };