diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-03-18 12:00:39 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2019-05-13 14:44:03 -0700 |
commit | d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579 (patch) | |
tree | 1f3541db753629603d66d5c83783bcf954bd8c77 /tcg/aarch64 | |
parent | bab1671f0fa928fd678a22f934739f06fd5fd035 (diff) | |
download | qemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.zip qemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.tar.gz qemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.tar.bz2 |
tcg: Add tcg_out_dupm_vec to the backend interface
Currently stubbed out in all backends that support vectors.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/aarch64')
-rw-r--r-- | tcg/aarch64/tcg-target.inc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tcg/aarch64/tcg-target.inc.c b/tcg/aarch64/tcg-target.inc.c index 3cefdd1..4a3cfa7 100644 --- a/tcg/aarch64/tcg-target.inc.c +++ b/tcg/aarch64/tcg-target.inc.c @@ -822,6 +822,12 @@ static bool tcg_out_dup_vec(TCGContext *s, TCGType type, unsigned vece, return true; } +static bool tcg_out_dupm_vec(TCGContext *s, TCGType type, unsigned vece, + TCGReg r, TCGReg base, intptr_t offset) +{ + return false; +} + static void tcg_out_movi(TCGContext *s, TCGType type, TCGReg rd, tcg_target_long value) { |