Skip to content
Snippets Groups Projects
Commit c6c7d84d authored by Richard Henderson's avatar Richard Henderson Committed by Richard Henderson
Browse files

tcg: Return NULL temp for TCG_CALL_DUMMY_ARG


Reviewed-by: default avatarPhilippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: default avatarEmilio G. Cota <cota@braap.org>
Signed-off-by: default avatarRichard Henderson <rth@twiddle.net>
parent fa477d25
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment