diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-07 17:45:15 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-07 17:45:15 +0000 |
commit | b6d17150af9930f28aec1debc41f6c5f9ddcc3ba (patch) | |
tree | 60d1aee5c860755259cb734954da1ceea0648f3b /tcg/x86_64/tcg-target.h | |
parent | 4a7f0e0655689b0e5fc84d85ce167d3053fe43ef (diff) |
Implement TCG sign extension ops for x86-64.
Signed-off-by: Paul Brook <paul@codesourcery.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5179 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg/x86_64/tcg-target.h')
-rw-r--r-- | tcg/x86_64/tcg-target.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tcg/x86_64/tcg-target.h b/tcg/x86_64/tcg-target.h index 32486bcb9a..9a0cca0580 100644 --- a/tcg/x86_64/tcg-target.h +++ b/tcg/x86_64/tcg-target.h @@ -60,6 +60,11 @@ enum { #define TCG_TARGET_HAS_bswap_i64 #define TCG_TARGET_HAS_neg_i32 #define TCG_TARGET_HAS_neg_i64 +#define TCG_TARGET_HAS_ext8s_i32 +#define TCG_TARGET_HAS_ext16s_i32 +#define TCG_TARGET_HAS_ext8s_i64 +#define TCG_TARGET_HAS_ext16s_i64 +#define TCG_TARGET_HAS_ext32s_i64 /* Note: must be synced with dyngen-exec.h */ #define TCG_AREG0 TCG_REG_R14 |