This is the mail archive of the binutils@sources.redhat.com 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]

Re: [PATCH] More mostly cosmetic changes all over binutils


On Thu, May 03, 2001 at 09:19:37PM +0200, Thiemo Seufer wrote:
> here comes more fallout from my mips64-linux development.

Looks mostly OK except for use of `U' suffix on constants, which is
not compatible with K&R compilers.  That means your include/elf/common.h
and ld/ldgram.y changes are not acceptable.  Instead of

#define SOMETHING 0x1234U

write

#define SOMETHING ((unsigned) 0x1234)

Alan Modra


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