On Mon, Mar 8, 2021 at 8:47 PM Eli Zaretskii wrote: > > From: Pip Cet > > Date: Mon, 8 Mar 2021 18:32:55 +0000 > > Cc: Eli Zaretskii , 46256@debbugs.gnu.org, andrewjmoreton@gmail.com > > > > What's saved_cu, actually? > > Not sure I understand the question. Is the below what you wanted to > see? > > (gdb) p saved_cu > $6 = (Lisp_Object *) 0x6a5b2e7c Yes! I believe we've found another bug. We were allocating comp_unit as a Lisp_Object **, but it's actually a Lisp_Object. Pip