Re: [PATCH] Remove unused #include "vec.h" from hash-table.h

2019-09-25 Thread Jason Merrill
On Wed, Sep 25, 2019 at 8:01 PM Christian Biesinger wrote: > On Mon, Sep 23, 2019 at 3:15 PM Jason Merrill wrote: > > On Mon, Sep 23, 2019 at 3:52 PM Christian Biesinger via gcc-patches > > wrote: > > > > > > From: Christian Biesinger > > > > > > Removes an unused include as a cleanup. Requires

Re: [PATCH] Remove unused #include "vec.h" from hash-table.h

2019-09-25 Thread Christian Biesinger via gcc-patches
On Mon, Sep 23, 2019 at 3:15 PM Jason Merrill wrote: > > On Mon, Sep 23, 2019 at 3:52 PM Christian Biesinger via gcc-patches > wrote: > > > > From: Christian Biesinger > > > > Removes an unused include as a cleanup. Requires updating > > lots of files who previously relied on this transitive inc

Re: [PATCH] Remove unused #include "vec.h" from hash-table.h

2019-09-24 Thread Segher Boessenkool
On Tue, Sep 24, 2019 at 07:44:10AM +0200, Bernhard Reutner-Fischer wrote: > On Mon, 23 Sep 2019 14:52:19 -0500 > "Christian Biesinger via gcc-patches" wrote: > > From: Christian Biesinger > > Removes an unused include as a cleanup. Requires updating > > lots of files who previously relied on this

Re: [PATCH] Remove unused #include "vec.h" from hash-table.h

2019-09-23 Thread Bernhard Reutner-Fischer
On Mon, 23 Sep 2019 14:52:19 -0500 "Christian Biesinger via gcc-patches" wrote: > From: Christian Biesinger > > Removes an unused include as a cleanup. Requires updating > lots of files who previously relied on this transitive include. Note that we have a tool to help prune unused includes, so

Re: [PATCH] Remove unused #include "vec.h" from hash-table.h

2019-09-23 Thread Jason Merrill
On Mon, Sep 23, 2019 at 3:52 PM Christian Biesinger via gcc-patches wrote: > > From: Christian Biesinger > > Removes an unused include as a cleanup. Requires updating > lots of files who previously relied on this transitive include. > > I have only been able to test this on x86_64 because I faile

[PATCH] Remove unused #include "vec.h" from hash-table.h

2019-09-23 Thread Christian Biesinger via gcc-patches
From: Christian Biesinger Removes an unused include as a cleanup. Requires updating lots of files who previously relied on this transitive include. I have only been able to test this on x86_64 because I failed at building a cross compiler. gcc/ChangeLog: 2019-09-23 Christian Biesinger