https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120464

            Bug ID: 120464
           Summary: Build broken in ggc-page.cc on master
           Product: gcc
           Version: 15.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: zmajeed at sbcglobal dot net
  Target Milestone: ---

GCC build fails on master due to commit
725063bc1fda6b0403a8b72fce3b4c9cc6a4ba3a

It moved the page_entry* free_pages field from ggc_globals to a new struct
free_list - and missed updating a line of initializations

958: struct page_entry *e, *f = G.free_pages;

that should be

struct page_entry *e, *f = free_list->free_pages;

Reply via email to