diff options
author | Richard Henderson <rth@twiddle.net> | 2010-03-19 13:08:56 -0700 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-03-26 21:52:44 +0100 |
commit | 32d98fbd10415433283a6cbdde86c3305b0ba8c2 (patch) | |
tree | cccbbc562190f5ba4d69cc3b87c00664330ccf1e /tcg/tcg-opc.h | |
parent | 9940a96bc8d29a385cd00b80e52124e931a379cd (diff) |
tcg: Allow target-specific implementation of NOR.
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 a20d3d877a..9797f637e4 100644 --- a/tcg/tcg-opc.h +++ b/tcg/tcg-opc.h @@ -122,6 +122,9 @@ DEF2(eqv_i32, 1, 2, 0, 0) #ifdef TCG_TARGET_HAS_nand_i32 DEF2(nand_i32, 1, 2, 0, 0) #endif +#ifdef TCG_TARGET_HAS_nor_i32 +DEF2(nor_i32, 1, 2, 0, 0) +#endif #if TCG_TARGET_REG_BITS == 64 DEF2(mov_i64, 1, 1, 0, 0) @@ -211,6 +214,9 @@ DEF2(eqv_i64, 1, 2, 0, 0) #ifdef TCG_TARGET_HAS_nand_i64 DEF2(nand_i64, 1, 2, 0, 0) #endif +#ifdef TCG_TARGET_HAS_nor_i64 +DEF2(nor_i64, 1, 2, 0, 0) +#endif #endif /* QEMU specific */ |