From a8b462be08d807dbf00c1959c2debc241fc215a3 Mon Sep 17 00:00:00 2001 From: Michael Hayes Date: Sun, 7 Jan 2001 20:54:35 +0000 Subject: 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 --- gcc/libgcc2.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/libgcc2.h') diff --git a/gcc/libgcc2.h b/gcc/libgcc2.h index ae6865f..a64eb8f 100644 --- a/gcc/libgcc2.h +++ b/gcc/libgcc2.h @@ -163,7 +163,8 @@ typedef int word_type __attribute__ ((mode (__word__))); #define UDWtype UTItype #define __NW(a,b) __ ## a ## di ## 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 Wtype SItype #define UWtype USItype -- cgit v1.1