From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: rodneybrown@pmsc.com, gdb@cygnus.com Subject: Re: 4.17.86 on AIX 4.2.0.0 using IBM xlc Date: Thu, 01 Apr 1999 00:00:00 -0000 Message-id: <36EF66C2.EA0D705A@cygnus.com> References: <9903169216.AA921646777.cygnus.gdb@cc.pmsc.com> <36EF5F02.F80F3BAD.cygnus.gdb@cygnus.com> X-SW-Source: 1999-q1/msg00133.html Andrew Cagney wrote: > > rodneybrown@pmsc.com wrote: > > > > AIX 4.2.0.0 xlc gives an error for trailing commas in enum declarations > > Specifically compiling gdb-4.17.86/gdb/blockframe.c it gives > > > > "gdb-4.17.86/gdb/target.h", line 57.22: 1506-046 (S) Syntax error. > > "gdb-4.17.86/gdb/breakpoint.h", line 114.17: 1506-046 (S) Syntax error. > > Thanks, Hmm (is this a nightmare comming true?), Looking at C manual: 6.5.2.2 Enumeration specifiers Syntax enum-specifier: enum identifieropt { enumerator-list } enum identifieropt { enumerator-list , } enum identifier enumerator-list: enumerator enumerator-list , enumerator enumerator: enumeration-constant enumeration-constant = constant-expression and the relevant line: enum thread_control_capabilities { tc_none = 0, /* Default: can't control thread execution. */ tc_schedlock = 1, /* Can lock the thread scheduler. */ tc_switch = 2, /* Can switch the running thread on demand. */ }; So, what to do about this one? Andrew