On Mon, Sep 14, 2026 at 1:55 PM Marco Liebel <[email protected]> wrote:
> On Fri, Sep 11, 2026 at 5:08 PM Taylor Simpson <[email protected]> > wrote: > > > > Signed-off-by: Taylor Simpson <[email protected]> > > --- > > target/hexagon/translate.h | 11 +++++++++-- > > target/hexagon/translate.c | 8 ++++++++ > > 2 files changed, 17 insertions(+), 2 deletions(-) > > > > diff --git a/target/hexagon/translate.c b/target/hexagon/translate.c > > index 815eecb60a..f469452daa 100644 > > --- a/target/hexagon/translate.c > > +++ b/target/hexagon/translate.c > > @@ -575,6 +575,8 @@ static void clear_pkt_ctx(DisasContext *ctx) > > bitmap_zero(ctx->predicated_regs, TOTAL_PER_THREAD_REGS); > > #ifndef CONFIG_USER_ONLY > > ctx->greg_log_idx = 0; > > + bitmap_zero(ctx->gregs_written, NUM_GREGS); > > + bitmap_zero(ctx->qregs_multi_write, NUM_GREGS); > > Should this be `*g*regs_multi_write` and not `*q*regs_multi_write`? > Yes, I caught this when fixing the test-functional failures Brian pointed out. Taylor
