mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
tcg: Return NULL temp for TCG_CALL_DUMMY_ARG
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Emilio G. Cota <cota@braap.org> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
fa477d2547
commit
c6c7d84df8
1 changed files with 1 additions and 1 deletions
|
@ -731,7 +731,7 @@ extern bool parallel_cpus;
|
|||
|
||||
static inline TCGTemp *arg_temp(TCGArg a)
|
||||
{
|
||||
return &tcg_ctx.temps[a];
|
||||
return a == TCG_CALL_DUMMY_ARG ? NULL : &tcg_ctx.temps[a];
|
||||
}
|
||||
|
||||
static inline void tcg_set_insn_param(int op_idx, int arg, TCGArg v)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue