aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-03-10 10:29:45 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-03-10 10:29:45 +0000
commit43e860ef0989ac152854ad5775295e86656bdf4e (patch)
treef16affb863f72897b3fbe2a547046561ceeb779d
parenta3fe901337703a04d39f4fe8444b03c8aa37bd3c (diff)
Fix tcg after commit 6800
The introduction of TCGV_EQUAL and not op is slightly broken. The definition of DEBUG_TCGV shows that. Signed-off-by: Laurent Desnogues <laurent.desnogues@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6802 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--tcg/tcg-op.h2
-rw-r--r--tcg/tcg.h5
2 files changed, 4 insertions, 3 deletions
diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h
index c5a4b34dc..b5d0847d9 100644
--- a/tcg/tcg-op.h
+++ b/tcg/tcg-op.h
@@ -1435,7 +1435,7 @@ static inline void tcg_gen_not_i32(TCGv_i32 ret, TCGv_i32 arg)
static inline void tcg_gen_not_i64(TCGv_i64 ret, TCGv_i64 arg)
{
#ifdef TCG_TARGET_HAS_not_i64
- tcg_gen_op2_i32(INDEX_op_not_i64, ret, arg);
+ tcg_gen_op2_i64(INDEX_op_not_i64, ret, arg);
#else
tcg_gen_xori_i64(ret, arg, -1);
#endif
diff --git a/tcg/tcg.h b/tcg/tcg.h
index eb958f4fc..1ffeca6e6 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -153,8 +153,6 @@ typedef int TCGv_i64;
#define MAKE_TCGV_I64(x) (x)
#define GET_TCGV_I32(t) (t)
#define GET_TCGV_I64(t) (t)
-#define TCGV_EQUAL_I32(a, b) (GET_TCGV_I32(a) == GET_TCGV_I32(b))
-#define TCGV_EQUAL_I64(a, b) (GET_TCGV_I64(a) == GET_TCGV_I64(b))
#if TCG_TARGET_REG_BITS == 32
#define TCGV_LOW(t) (t)
@@ -163,6 +161,9 @@ typedef int TCGv_i64;
#endif /* DEBUG_TCGV */
+#define TCGV_EQUAL_I32(a, b) (GET_TCGV_I32(a) == GET_TCGV_I32(b))
+#define TCGV_EQUAL_I64(a, b) (GET_TCGV_I64(a) == GET_TCGV_I64(b))
+
/* Dummy definition to avoid compiler warnings. */
#define TCGV_UNUSED_I32(x) x = MAKE_TCGV_I32(-1)
#define TCGV_UNUSED_I64(x) x = MAKE_TCGV_I64(-1)