diff options
author | Richard Henderson <rth@twiddle.net> | 2010-04-10 22:22:28 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-04-26 20:06:18 +0200 |
commit | 70ec48ef55e5a3d5ecef8599f3fbdfb87f0740dc (patch) | |
tree | 88c225b86de2e90a66fc65a9d18c3c4a9fbba04f /tcg/hppa/tcg-target.h | |
parent | 2d097a83e223d3e06de5047e95eeadf1f919ac56 (diff) |
tcg-hppa: Remove automatically implemented opcodes.
Remove neg, ext8u, ext16u, as requested.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/hppa/tcg-target.h')
-rw-r--r-- | tcg/hppa/tcg-target.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tcg/hppa/tcg-target.h b/tcg/hppa/tcg-target.h index 7e21f1de4e..a5cc440d49 100644 --- a/tcg/hppa/tcg-target.h +++ b/tcg/hppa/tcg-target.h @@ -89,15 +89,17 @@ enum { #define TCG_TARGET_HAS_rot_i32 #define TCG_TARGET_HAS_ext8s_i32 #define TCG_TARGET_HAS_ext16s_i32 -#define TCG_TARGET_HAS_ext8u_i32 -#define TCG_TARGET_HAS_ext16u_i32 #define TCG_TARGET_HAS_bswap16_i32 #define TCG_TARGET_HAS_bswap32_i32 #define TCG_TARGET_HAS_not_i32 -#define TCG_TARGET_HAS_neg_i32 #define TCG_TARGET_HAS_andc_i32 // #define TCG_TARGET_HAS_orc_i32 +/* optional instructions automatically implemented */ +#undef TCG_TARGET_HAS_neg_i32 /* sub rd, 0, rs */ +#undef TCG_TARGET_HAS_ext8u_i32 /* and rd, rs, 0xff */ +#undef TCG_TARGET_HAS_ext16u_i32 /* and rd, rs, 0xffff */ + #define TCG_TARGET_HAS_GUEST_BASE /* Note: must be synced with dyngen-exec.h */ |