diff options
author | Richard Henderson | 2020-09-04 03:18:08 +0200 |
---|---|---|
committer | Richard Henderson | 2021-01-13 19:39:08 +0100 |
commit | 88d4005b098427638d7551aa04ebde4fdd06835b (patch) | |
tree | 31c002571abbef698169d2e15b938ade1c810bf6 /include/tcg/tcg.h | |
parent | tcg: Use tcg_constant_{i32,i64} with tcg plugins (diff) | |
download | qemu-88d4005b098427638d7551aa04ebde4fdd06835b.tar.gz qemu-88d4005b098427638d7551aa04ebde4fdd06835b.tar.xz qemu-88d4005b098427638d7551aa04ebde4fdd06835b.zip |
tcg: Use tcg_constant_{i32,i64,vec} with gvec expanders
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/tcg/tcg.h')
-rw-r--r-- | include/tcg/tcg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index eeeb70ad43..504c5e9bb0 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -1109,6 +1109,7 @@ static inline TCGv_i64 tcg_constant_i64(int64_t val) } TCGv_vec tcg_constant_vec(TCGType type, unsigned vece, int64_t val); +TCGv_vec tcg_constant_vec_matching(TCGv_vec match, unsigned vece, int64_t val); #if UINTPTR_MAX == UINT32_MAX # define tcg_const_ptr(x) ((TCGv_ptr)tcg_const_i32((intptr_t)(x))) |