Re: [PATCH 2/3] Compiler Attributes: add support for __copy (gcc >= 9)

2019-02-09 Thread Miguel Ojeda
On Sat, Feb 9, 2019 at 1:41 AM Nick Desaulniers wrote: > > Drop "they" from this sentence if there's a respin, otherwise looks helpful. > Reviewed-by: Nick Desaulniers Good catch! Thank you, Miguel

Re: [PATCH 2/3] Compiler Attributes: add support for __copy (gcc >= 9)

2019-02-08 Thread Nick Desaulniers
On Fri, Feb 8, 2019 at 4:09 PM Miguel Ojeda wrote: > > From the GCC manual: > > copy > copy(function) > > The copy attribute applies the set of attributes with which function > has been declared to the declaration of the function to which > the attribute is applied. The attribute i

[PATCH 2/3] Compiler Attributes: add support for __copy (gcc >= 9)

2019-02-08 Thread Miguel Ojeda
>From the GCC manual: copy copy(function) The copy attribute applies the set of attributes with which function has been declared to the declaration of the function to which the attribute is applied. The attribute is designed for libraries that define aliases or function resolv