diff options
author | Richard Henderson | 2018-12-18 04:35:46 +0100 |
---|---|---|
committer | Richard Henderson | 2019-01-28 16:03:34 +0100 |
commit | dd0a0fcdd8848c2a18970c44a62bd8f394c2b495 (patch) | |
tree | 5851b9d1238e4aa68b41982439fdd34e99215d75 /tcg/aarch64 | |
parent | tcg: Add opcodes for vector saturated arithmetic (diff) | |
download | qemu-dd0a0fcdd8848c2a18970c44a62bd8f394c2b495.tar.gz qemu-dd0a0fcdd8848c2a18970c44a62bd8f394c2b495.tar.xz qemu-dd0a0fcdd8848c2a18970c44a62bd8f394c2b495.zip |
tcg: Add opcodes for vector minmax arithmetic
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/aarch64')
-rw-r--r-- | tcg/aarch64/tcg-target.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tcg/aarch64/tcg-target.h b/tcg/aarch64/tcg-target.h index 98556bcf22..545a6eec75 100644 --- a/tcg/aarch64/tcg-target.h +++ b/tcg/aarch64/tcg-target.h @@ -136,6 +136,7 @@ typedef enum { #define TCG_TARGET_HAS_cmp_vec 1 #define TCG_TARGET_HAS_mul_vec 1 #define TCG_TARGET_HAS_sat_vec 0 +#define TCG_TARGET_HAS_minmax_vec 0 #define TCG_TARGET_DEFAULT_MO (0) #define TCG_TARGET_HAS_MEMORY_BSWAP 1 |