mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
tcg: Remove sizemask and flags arguments to tcg_gen_callN
Take them from the TCGHelperInfo struct instead. Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
afb49896fa
commit
bbb8a1b455
4 changed files with 16 additions and 26 deletions
|
@ -112,8 +112,7 @@
|
|||
((dh_is_64bit(t) << (n*2)) | (dh_is_signed(t) << (n*2+1)))
|
||||
|
||||
#define dh_arg(t, n) \
|
||||
args[n - 1] = glue(GET_TCGV_, dh_alias(t))(glue(arg, n)); \
|
||||
sizemask |= dh_sizemask(t, n)
|
||||
(args[n - 1] = glue(GET_TCGV_, dh_alias(t))(glue(arg, n)))
|
||||
|
||||
#define dh_arg_decl(t, n) glue(TCGv_, dh_alias(t)) glue(arg, n)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue