Re: C++ Module Binding Vector

2020-12-14 Thread Nathan Sidwell
On 12/11/20 3:39 PM, Jason Merrill wrote: On 12/2/20 9:19 AM, Nathan Sidwell wrote: This is modified from the original patch.  firstly it contains a few more necessary bits.  But mainly I renamed the entities from +extern tree make_binding_vec    (tree, unsigned clusters); ... +mak

Re: C++ Module Binding Vector

2020-12-11 Thread Jason Merrill via Gcc-patches
On 12/2/20 9:19 AM, Nathan Sidwell wrote: This is modified from the original patch.  firstly it contains a few more necessary bits.  But mainly I renamed the entities from 'MODULE_foo' to 'BINDING_foo', as it's a vector of bindings used by modules (not a vector of modules).  It also belongs in

C++ Module Binding Vector

2020-12-02 Thread Nathan Sidwell
This is modified from the original patch. firstly it contains a few more necessary bits. But mainly I renamed the entities from 'MODULE_foo' to 'BINDING_foo', as it's a vector of bindings used by modules (not a vector of modules). It also belongs in name-lookup.h. Pushing to trunk This add