https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87325
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |pinskia at gcc dot gnu.org
Status|WAITING |ASSIGNED
Assignee|unassigned at gcc dot gnu.org |pinskia at gcc dot
gnu.org
--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I just noticed this also.
determine_base_object_1 uses a bare ptr_type_node in 2 places when it should
have used one with the corrected namespace on it.
obj = fold_convert (ptr_type_node, build_fold_addr_expr (base));
...
obj = fold_convert (generic_type_for (TREE_TYPE (*tp)), *tp);
I will fix those.