Commit a8b462be by Michael Hayes Committed by Michael Hayes

libgcc2.h (W_TYPE_SIZE): Fix case where MIN_UNITS_PER_WORD == 1 and LONG_LONG_TYPE_SIZE > 32.

	* libgcc2.h (W_TYPE_SIZE): Fix case where MIN_UNITS_PER_WORD == 1
	and LONG_LONG_TYPE_SIZE > 32.

From-SVN: r38782
parent bc6d273e
2001-01-08 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* libgcc2.h (W_TYPE_SIZE): Fix case where MIN_UNITS_PER_WORD == 1
and LONG_LONG_TYPE_SIZE > 32.
2001-01-07 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> 2001-01-07 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* jump.c (reversed_comparison_code_parts): Fix typo introduced by * jump.c (reversed_comparison_code_parts): Fix typo introduced by
......
...@@ -163,7 +163,8 @@ typedef int word_type __attribute__ ((mode (__word__))); ...@@ -163,7 +163,8 @@ typedef int word_type __attribute__ ((mode (__word__)));
#define UDWtype UTItype #define UDWtype UTItype
#define __NW(a,b) __ ## a ## di ## b #define __NW(a,b) __ ## a ## di ## b
#define __NDW(a,b) __ ## a ## ti ## b #define __NDW(a,b) __ ## a ## ti ## b
#elif MIN_UNITS_PER_WORD > 2 || LONG_LONG_TYPE_SIZE > 32 #elif MIN_UNITS_PER_WORD > 2 \
|| (MIN_UNITS_PER_WORD > 1 && LONG_LONG_TYPE_SIZE > 32)
#define W_TYPE_SIZE (4 * BITS_PER_UNIT) #define W_TYPE_SIZE (4 * BITS_PER_UNIT)
#define Wtype SItype #define Wtype SItype
#define UWtype USItype #define UWtype USItype
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment