diff options
Diffstat (limited to 'tcg/tcg-op.h')
-rw-r--r-- | tcg/tcg-op.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |