This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 06/13] make various variables in gas const


On Sun, 21 Feb 2016, tbsaunde+binutils@tbsaunde.org wrote:
> From: Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
>
> gas/ChangeLog:

> 	* config/tc-mmix.c (mmix_handle_mmixal): Likewise.

I like your work, but please use "char *foo", not "char * foo".
It's kind-of a nit (...) but not completely so.

1. Consistency with the rest of that file.

2. Misleading; you can't write "char * foo, bar;" (or even
worse, "char* foo, bar;") to declare foo and bad both char
pointers, you have to write "char *foo, *bar;".
Ergo the "*" "belongs" to the name, in non-standardese terms.

brgds, H-P


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]