Oops - omitted this part of xstormy16 patch to use __clzhi2() instead of __stormy16_count_leading_zeros.

From-SVN: r154905
This commit is contained in:
Nick Clifton 2009-12-02 11:15:50 +00:00
parent dafcb54e42
commit 2a14229d98

View File

@ -1336,7 +1336,7 @@ extern UHItype __stormy16_count_leading_zeros (UHItype);
{ \
UHItype c; \
\
c = __stormy16_count_leading_zeros ((x) >> (size - 16)); \
c = __clzhi2 ((x) >> (size - 16)); \
(count) += c; \
if (c != 16) \
break; \