Commit 7d4f2e6c by J"orn Rennecke Committed by Jeff Law

* longlong.h (count_leading_zeros): Add missing casts to USItype.

From-SVN: r16096
parent decd44ac
Sun Oct 19 19:00:35 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
* longlong.h (count_leading_zeros): Add missing casts to USItype.
Sun Oct 19 18:44:06 1997 Jeffrey A Law (law@cygnus.com)
* i386/bsd386.h (ASM_COMMENT_START): Define.
......
......@@ -1236,9 +1236,9 @@ extern const UQItype __clz_tab[];
\
if (SI_TYPE_SIZE <= 32) \
{ \
__a = __xr < (1<<2*__BITS4) \
? (__xr < (1<<__BITS4) ? 0 : __BITS4) \
: (__xr < (1<<3*__BITS4) ? 2*__BITS4 : 3*__BITS4); \
__a = __xr < ((USItype)1<<2*__BITS4) \
? (__xr < ((USItype)1<<__BITS4) ? 0 : __BITS4) \
: (__xr < ((USItype)1<<3*__BITS4) ? 2*__BITS4 : 3*__BITS4); \
} \
else \
{ \
......
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