This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [C++ patch] one more missed mark_used
>
> > HANDLER_TYPE (handler) = type;
> > + if (type)
> > + {
> > + tree tinfo = eh_type_info (type);
> > + mark_used (tinfo);
> > + }
>
> Just write:
>
> if (type)
> mark_used (eh_type_info (type));
>
> C is not a 3-address language. :-)
:) I am gimplifying it..
OK, it was result of a lot of incremental changes.
Thanks
Honza
>
> The patch is OK.
>
> Thanks,
>
> --
> Mark Mitchell
> CodeSourcery, LLC
> mark@codesourcery.com