diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-05-15 12:49:01 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-05-22 19:05:21 -0700 |
commit | af8c14a25477e0ea127ca66d5d9c0710da854906 (patch) | |
tree | 916d9451e00c12da1fafff0ce9bc4b303c98b873 /tcg/s390x | |
parent | 7e1c0047015ffbd408e1aa4a5ec1abe4751dbf7e (diff) | |
download | qemu-af8c14a25477e0ea127ca66d5d9c0710da854906.zip qemu-af8c14a25477e0ea127ca66d5d9c0710da854906.tar.gz qemu-af8c14a25477e0ea127ca66d5d9c0710da854906.tar.bz2 |
tcg: Introduce TCG_TARGET_HAS_tst_vec
Prelude to supporting TCG_COND_TST* in vector comparisons.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/s390x')
-rw-r--r-- | tcg/s390x/tcg-target.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tcg/s390x/tcg-target.h b/tcg/s390x/tcg-target.h index ae448c3..62ce9d7 100644 --- a/tcg/s390x/tcg-target.h +++ b/tcg/s390x/tcg-target.h @@ -163,6 +163,7 @@ extern uint64_t s390_facilities[3]; #define TCG_TARGET_HAS_minmax_vec 1 #define TCG_TARGET_HAS_bitsel_vec 1 #define TCG_TARGET_HAS_cmpsel_vec 0 +#define TCG_TARGET_HAS_tst_vec 0 /* used for function call generation */ #define TCG_TARGET_STACK_ALIGN 8 |