Re: [PATCH] libiberty: d-demangle: remove parenthesis where it is not needed

2021-10-12 Thread Luís Ferreira
On Mon, 2021-10-04 at 09:33 +0200, ibuc...@gdcproject.org wrote: > > On 29/09/2021 18:26 Luís Ferreira wrote: > > > >   > > Those parenthesis doesn't increase readability at all and this > > patch makes the > > source code a bit more consistent with the rest of the > > dereferencing > >

Re: [PATCH] libiberty: d-demangle: remove parenthesis where it is not needed

2021-10-12 Thread Luís Ferreira
On Mon, 2021-10-04 at 10:40 +0200, Andreas Schwab wrote: > On Sep 29 2021, Luís Ferreira wrote: > > > diff --git a/libiberty/d-demangle.c b/libiberty/d-demangle.c > > index 3adf7b562d1..a05e72d8efe 100644 > > --- a/libiberty/d-demangle.c > > +++ b/libiberty/d-demangle.c > > @@ -253,15 +253,15 @@

Re: [PATCH] libiberty: d-demangle: remove parenthesis where it is not needed

2021-10-04 Thread Andreas Schwab
On Sep 29 2021, Luís Ferreira wrote: > diff --git a/libiberty/d-demangle.c b/libiberty/d-demangle.c > index 3adf7b562d1..a05e72d8efe 100644 > --- a/libiberty/d-demangle.c > +++ b/libiberty/d-demangle.c > @@ -253,15 +253,15 @@ dlang_hexdigit (const char *mangled, char *ret) > >c =

Re: [PATCH] libiberty: d-demangle: remove parenthesis where it is not needed

2021-10-04 Thread ibuclaw--- via Gcc-patches
> On 29/09/2021 18:26 Luís Ferreira wrote: > > > Those parenthesis doesn't increase readability at all and this patch makes the > source code a bit more consistent with the rest of the dereferencing > assignments. > OK, but can you write up a changelog entry for it? Thanks, Iain.

[PATCH] libiberty: d-demangle: remove parenthesis where it is not needed

2021-09-29 Thread Luís Ferreira
Those parenthesis doesn't increase readability at all and this patch makes the source code a bit more consistent with the rest of the dereferencing assignments. Signed-off-by: Luís Ferreira --- libiberty/d-demangle.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git