Re: [patch] conditionally declare bswap functions depending on target

2007-07-03 Thread Ian Lance Taylor
Eric Christopher <[EMAIL PROTECTED]> writes: > 2007-07-03 Eric Christopher <[EMAIL PROTECTED]> > > * libgcc2.h: Conditionally include __bswapsi2 and > __bswapdi2. This is OK if you change "include" to "declare" in the ChangeLog entry. Thanks. Ian

[patch] conditionally declare bswap functions depending on target

2007-07-03 Thread Eric Christopher
The target I am working on is 16-bit target and cannot support 64- bit data types (DI mode). How about conditionally declare the function? #if LONG_LONG_TYPE_SIZE > 32 extern DItype __bswapdi2 (DItype); #endif So, I finally got around to this patch. While I was at it I went ahead and check