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]
Other format: [Raw text]

Re: ebcdic support for binutils...


esp5@rama.comp.pge.com writes:

> On Tue, Dec 11, 2001 at 08:12:33AM -0500, Kaveh R. Ghazi wrote:
> > 
> >  > +    /* EBCDIC */  
> >  > + 
> >  > + #elif    '\n' == 0x15 &&    ' ' == 0x40 &&     '0' == 0xF0 \
> >  > +   &&     'A'  == 0xC1 &&    'a' == 0x81 &&     '!' == 0x5A \
> >  > +   &&     EOF == -1
> >  > + 
> > 
> > Please don't use #elif, it will generate a warning from -Wtraditional
> > with gcc 3.0 or later.
> 
> Hmm. Then what would you suggest in its place?

#else
#if ...
#endif
#endif

Ian


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