diff options
author | Richard Henderson <rth@twiddle.net> | 2013-02-19 23:51:52 -0800 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-02-23 17:25:28 +0000 |
commit | d7156f7ce4581c874df4a27409e7d99873faa413 (patch) | |
tree | 1708b382c2a448c404d54980dadb4a5a496f212a /tcg/ia64 | |
parent | 803d805bcef4ea7b7d6ef0b4929263e1160d6b3c (diff) | |
download | qemu-d7156f7ce4581c874df4a27409e7d99873faa413.tar.gz qemu-d7156f7ce4581c874df4a27409e7d99873faa413.tar.bz2 qemu-d7156f7ce4581c874df4a27409e7d99873faa413.zip |
tcg: Add 64-bit multiword arithmetic operations
Matching the 32-bit multiword arithmetic that we already have.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tcg/ia64')
-rw-r--r-- | tcg/ia64/tcg-target.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tcg/ia64/tcg-target.h b/tcg/ia64/tcg-target.h index b4ff7c361b..40f442ebe4 100644 --- a/tcg/ia64/tcg-target.h +++ b/tcg/ia64/tcg-target.h @@ -137,8 +137,11 @@ typedef enum { #define TCG_TARGET_HAS_deposit_i32 1 #define TCG_TARGET_HAS_deposit_i64 1 #define TCG_TARGET_HAS_add2_i32 0 +#define TCG_TARGET_HAS_add2_i64 0 #define TCG_TARGET_HAS_sub2_i32 0 +#define TCG_TARGET_HAS_sub2_i64 0 #define TCG_TARGET_HAS_mulu2_i32 0 +#define TCG_TARGET_HAS_mulu2_i64 0 #define TCG_TARGET_deposit_i32_valid(ofs, len) ((len) <= 16) #define TCG_TARGET_deposit_i64_valid(ofs, len) ((len) <= 16) |