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: STRING_COMMA_LEN


Daniel Jacobowitz <drow@false.org> writes:

> We got a report (gdb/2339) that GDB 6.7 doesn't build with the Sun
> compiler.
>
> "elf.c", line 856: non-constant initializer: op "?"
> "elf.c", line 859: non-constant initializer: op "?"
> "elf.c", line 864: non-constant initializer: op "?"
> "elf.c", line 871: non-constant initializer: op "?"
>
> That's a STRING_COMMA_LEN:
>
> #define STRING_COMMA_LEN(STR) (STR), ((STR) ? sizeof (STR) - 1 : 0)
>
> I don't know if this is pedantically correct C or not; just
> passing it along...

The compiler is broken, conditional expressions are explicitly allowed
in constant expressions.  Of course, I don't know if the Sun compiler
claims standards conformance in any way...

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


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