This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: cpplib: Small tweak to cppfiles.c
Zack Weinberg wrote:-
> > When trying to figure out what PCH was doing with files, I
> > noticed some stuff was redundant. Regtested with no regressions.
> >
> > Neil.
> >
> > * cppfiles.c (open_file_pch): Don't put unused entries in the
> > splay tree. Remove dead code.
>
> Putting entries in the splay tree for files that don't exist is
> deliberate - it saves us trying to open them again the next time
> that file is referenced. Or am I confused about which entries you're
> talking about?
I don't believe the splay tree entry was used at all. The only
purpose of the call was to simplify the pathname, so I put that inline.
Neil.