Re: [PATCH][pushed] jit: Initialize function::m_blocks in ctor

2021-11-24 Thread Andrea Corallo via Gcc-patches
Martin Liška writes: [...] >> Question: that piece of code is there since 2014, should we >> back-port >> the fix as well? > > I've just pushed to to all active code streams (master, > releases/gcc-{9,10,11}). Wonderful, thanks again. Andrea

Re: [PATCH][pushed] jit: Initialize function::m_blocks in ctor

2021-11-24 Thread Martin Liška
On 11/24/21 11:06, Andrea Corallo wrote: Martin Liška writes: This resolves the problem reported here: https://mail.gnu.org/archive/html/bug-gnu-emacs/2021-11/msg00606.html https://bugzilla.opensuse.org/show_bug.cgi?id=1192951 I'm going to push it as obvious. Martin Hi Martin, thanks for

Re: [PATCH][pushed] jit: Initialize function::m_blocks in ctor

2021-11-24 Thread Andrea Corallo via Gcc-patches
Martin Liška writes: > This resolves the problem reported here: > https://mail.gnu.org/archive/html/bug-gnu-emacs/2021-11/msg00606.html > https://bugzilla.opensuse.org/show_bug.cgi?id=1192951 > > I'm going to push it as obvious. > > Martin Hi Martin, thanks for the fix! Question: that piece of

[PATCH][pushed] jit: Initialize function::m_blocks in ctor

2021-11-24 Thread Martin Liška
This resolves the problem reported here: https://mail.gnu.org/archive/html/bug-gnu-emacs/2021-11/msg00606.html https://bugzilla.opensuse.org/show_bug.cgi?id=1192951 I'm going to push it as obvious. Martin gcc/jit/ChangeLog: * jit-playback.c (function): Initialize m_blocks vector. ---