Commit 2a14229d by Nick Clifton

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

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

From-SVN: r154905
parent dafcb54e
......@@ -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; \
......
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