summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRichard Henderson2020-09-04 03:18:08 +0200
committerRichard Henderson2021-01-13 19:39:08 +0100
commit88d4005b098427638d7551aa04ebde4fdd06835b (patch)
tree31c002571abbef698169d2e15b938ade1c810bf6 /include
parenttcg: Use tcg_constant_{i32,i64} with tcg plugins (diff)
downloadqemu-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')
-rw-r--r--include/tcg/tcg.h1
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)))