Re: [PATCH] correct documentation of attribute ifunc (PR 81882)

2017-09-06 Thread Joseph Myers
This patch is OK with the spacing in the function prototype fixed as noted to follow normal GNU standards. -- Joseph S. Myers jos...@codesourcery.com

Re: [PATCH] correct documentation of attribute ifunc (PR 81882)

2017-08-17 Thread Andreas Schwab
On Aug 17 2017, Martin Sebor wrote: > -static void (*resolve_memcpy (void)) (void) > +static void* (*resolve_memcpy (void))(void *, const void *, size_t) Please use consistent spacing. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5

Re: [PATCH] correct documentation of attribute ifunc (PR 81882)

2017-08-17 Thread Martin Sebor
On 08/17/2017 01:26 PM, Alexander Monakov wrote: On Thu, 17 Aug 2017, Martin Sebor wrote: returns a pointer to the selected implementation function. The implementation functions' declarations must match the API of the -function being implemented, the resolver's declaration is be a -function

Re: [PATCH] correct documentation of attribute ifunc (PR 81882)

2017-08-17 Thread Alexander Monakov
On Thu, 17 Aug 2017, Martin Sebor wrote: > returns a pointer to the selected implementation function. The > implementation functions' declarations must match the API of the > -function being implemented, the resolver's declaration is be a > -function returning pointer to void function returning