diff options
author | Richard Henderson <rth@twiddle.net> | 2010-03-19 13:02:02 -0700 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-03-26 21:42:46 +0100 |
commit | 8d625cf1d159b313daefec13abc637c3e8862bd5 (patch) | |
tree | 039bef06552f0da0c737109f85c9d0e2a26d7f79 /tcg/tcg-opc.h | |
parent | a10f9f4f0c947ad0aa8283b62ea012b67f883523 (diff) |
tcg: Allow target-specific implementation of EQV.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/tcg-opc.h')
-rw-r--r-- | tcg/tcg-opc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tcg/tcg-opc.h b/tcg/tcg-opc.h index 441e51f5c9..8c34a83d27 100644 --- a/tcg/tcg-opc.h +++ b/tcg/tcg-opc.h @@ -116,6 +116,9 @@ DEF2(andc_i32, 1, 2, 0, 0) #ifdef TCG_TARGET_HAS_orc_i32 DEF2(orc_i32, 1, 2, 0, 0) #endif +#ifdef TCG_TARGET_HAS_eqv_i32 +DEF2(eqv_i32, 1, 2, 0, 0) +#endif #if TCG_TARGET_REG_BITS == 64 DEF2(mov_i64, 1, 1, 0, 0) @@ -199,6 +202,9 @@ DEF2(andc_i64, 1, 2, 0, 0) #ifdef TCG_TARGET_HAS_orc_i64 DEF2(orc_i64, 1, 2, 0, 0) #endif +#ifdef TCG_TARGET_HAS_eqv_i64 +DEF2(eqv_i64, 1, 2, 0, 0) +#endif #endif /* QEMU specific */ |