diff options
author | Richard Henderson | 2013-02-20 08:51:52 +0100 |
---|---|---|
committer | Blue Swirl | 2013-02-23 18:25:28 +0100 |
commit | d7156f7ce4581c874df4a27409e7d99873faa413 (patch) | |
tree | 1708b382c2a448c404d54980dadb4a5a496f212a /tcg/s390/tcg-target.h | |
parent | tcg-sparc: Always implement 32-bit multiword ops (diff) | |
download | qemu-d7156f7ce4581c874df4a27409e7d99873faa413.tar.gz qemu-d7156f7ce4581c874df4a27409e7d99873faa413.tar.xz 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/s390/tcg-target.h')
-rw-r--r-- | tcg/s390/tcg-target.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tcg/s390/tcg-target.h b/tcg/s390/tcg-target.h index 7772c35d65..ee31c37bdb 100644 --- a/tcg/s390/tcg-target.h +++ b/tcg/s390/tcg-target.h @@ -90,6 +90,9 @@ typedef enum TCGReg { #define TCG_TARGET_HAS_nor_i64 0 #define TCG_TARGET_HAS_deposit_i64 0 #define TCG_TARGET_HAS_movcond_i64 0 +#define TCG_TARGET_HAS_add2_i64 0 +#define TCG_TARGET_HAS_sub2_i64 0 +#define TCG_TARGET_HAS_mulu2_i64 0 #endif /* used for function call generation */ |