ebcdic support for binutils...

Ian Lance Taylor ian@airs.com
Tue Dec 11 12:15:00 GMT 2001


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



More information about the Binutils mailing list