On 4/26/23 01:42, Taylor Simpson wrote:
+ for (i = 0; i < TOTAL_PER_THREAD_REGS; i++) { + ctx->new_value[i] = NULL; + }
Perhaps memset(ctx->new_value, 0, sizeof(ctx->new_value)); Though probably the compiler would make that transformation. Or perhaps - DisasContext ctx; + DisasContext ctx = { 0 }; in gen_intermediate_code, and eliminate other 0 init in gen_start_packet? But it's not wrong as-is, so, Reviewed-by: Richard Henderson <richard.hender...@linaro.org> r~