aboutsummaryrefslogtreecommitdiff
path: root/tcg/tcg-opc.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2010-03-19 13:03:58 -0700
committerAurelien Jarno <aurelien@aurel32.net>2010-03-26 21:44:40 +0100
commit9940a96bc8d29a385cd00b80e52124e931a379cd (patch)
tree6000b2b1b24c355047db082a4e0d3387199cfb9a /tcg/tcg-opc.h
parent8d625cf1d159b313daefec13abc637c3e8862bd5 (diff)
tcg: Allow target-specific implementation of NAND.
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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tcg/tcg-opc.h b/tcg/tcg-opc.h
index 8c34a83d27..a20d3d877a 100644
--- a/tcg/tcg-opc.h
+++ b/tcg/tcg-opc.h
@@ -119,6 +119,9 @@ DEF2(orc_i32, 1, 2, 0, 0)
#ifdef TCG_TARGET_HAS_eqv_i32
DEF2(eqv_i32, 1, 2, 0, 0)
#endif
+#ifdef TCG_TARGET_HAS_nand_i32
+DEF2(nand_i32, 1, 2, 0, 0)
+#endif
#if TCG_TARGET_REG_BITS == 64
DEF2(mov_i64, 1, 1, 0, 0)
@@ -205,6 +208,9 @@ DEF2(orc_i64, 1, 2, 0, 0)
#ifdef TCG_TARGET_HAS_eqv_i64
DEF2(eqv_i64, 1, 2, 0, 0)
#endif
+#ifdef TCG_TARGET_HAS_nand_i64
+DEF2(nand_i64, 1, 2, 0, 0)
+#endif
#endif
/* QEMU specific */