From 43e860ef0989ac152854ad5775295e86656bdf4e Mon Sep 17 00:00:00 2001 From: aurel32 Date: Tue, 10 Mar 2009 10:29:45 +0000 Subject: 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 Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6802 c046a42c-6fe2-441c-8c8c-71466251a162 --- tcg/tcg-op.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tcg/tcg-op.h') diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h index c5a4b34dcc..b5d0847d97 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 -- cgit v1.2.1