diff options
author | Richard Henderson | 2018-12-18 03:01:47 +0100 |
---|---|---|
committer | Richard Henderson | 2019-01-28 16:03:34 +0100 |
commit | 8afaf0506606f8003ef696df849c5a98637a7a83 (patch) | |
tree | 89779034a934a38716364a0a8d04e8ab66c584c0 /tcg/i386 | |
parent | tcg: Add write_aofs to GVecGen4 (diff) | |
download | qemu-8afaf0506606f8003ef696df849c5a98637a7a83.tar.gz qemu-8afaf0506606f8003ef696df849c5a98637a7a83.tar.xz qemu-8afaf0506606f8003ef696df849c5a98637a7a83.zip |
tcg: Add opcodes for vector saturated arithmetic
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/i386')
-rw-r--r-- | tcg/i386/tcg-target.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tcg/i386/tcg-target.h b/tcg/i386/tcg-target.h index f378d29568..44381062e6 100644 --- a/tcg/i386/tcg-target.h +++ b/tcg/i386/tcg-target.h @@ -185,6 +185,7 @@ extern bool have_avx2; #define TCG_TARGET_HAS_shv_vec 0 #define TCG_TARGET_HAS_cmp_vec 1 #define TCG_TARGET_HAS_mul_vec 1 +#define TCG_TARGET_HAS_sat_vec 0 #define TCG_TARGET_deposit_i32_valid(ofs, len) \ (((ofs) == 0 && (len) == 8) || ((ofs) == 8 && (len) == 8) || \ |