https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120238
--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> --- This looks like a frontend issue to me,the CTOR {&e, 0} has 'e' without TREE_ADDESSABLE set. We used to paper over such FE issues during gimplification and wherenot, but not so any longer. Note that we _do_ eventually still set TREE_ADDRESSABLE when during SSA optimizations we create such stmt and call update_stmt on it. Still the frontend needs to set TREE_ADDRESSABLE when it takes the address of a variable.