Re: [PATCH] tcg: drop unused tcg_temp_free define

2023-10-15 Thread Richard Henderson
On 10/14/23 18:00, Mike Frysinger wrote: Use of the API was removed a while back, but the define wasn't. Signed-off-by: Mike Frysinger --- include/tcg/tcg-op.h | 2 -- 1 file changed, 2 deletions(-) Thanks for the catch. Queued. r~ diff --git a/include/tcg/tcg-op.h b/include/tcg/tcg-o

Re: [PATCH] tcg: drop unused tcg_temp_free define

2023-10-15 Thread Philippe Mathieu-Daudé
On 15/10/23 03:00, Mike Frysinger wrote: Use of the API was removed a while back, but the define wasn't. The cleanup started in commit 47f7313d81 ("tcg: Create tcg/tcg-temp-internal.h") and the last use got removed in d5920b7280 ("tcg: Remove TCGv from tcg_gen_qemu_{ld,st}_*"). Reviewed-by: Ph