Re: [PR c++/90613] Fix using-decl debug bloat

2019-08-28 Thread Jason Merrill
On Wed, Aug 28, 2019 at 9:35 AM Nathan Sidwell wrote: > > My patch reorganizing using decl handling caused a regression in the > size of debug information. The culprit was that we were passing an > overload set when previously we'd pass a single decl. And that broke an > elision test. > > Fixed

[PR c++/90613] Fix using-decl debug bloat

2019-08-28 Thread Nathan Sidwell
My patch reorganizing using decl handling caused a regression in the size of debug information. The culprit was that we were passing an overload set when previously we'd pass a single decl. And that broke an elision test. Fixed by moving that test into the iteration of the overload set. Mar