summaryrefslogtreecommitdiff
path: root/gcc/longlong.h
diff options
context:
space:
mode:
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2009-12-02 11:15:50 +0000
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2009-12-02 11:15:50 +0000
commitb1fe3927a8eb81b8a6ce0ffd5a824968a4255b7c (patch)
tree7765cf5e5050480f7c28d50a99bad81c7ec7da10 /gcc/longlong.h
parente4d9e8e56c07a324f92dadc8f3c63cc2339a35bd (diff)
downloadgcc-b1fe3927a8eb81b8a6ce0ffd5a824968a4255b7c.tar.gz
Oops - omitted this part of xstormy16 patch to use __clzhi2() instead of __stormy16_count_leading_zeros.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154905 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r--gcc/longlong.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h
index e1f8b359881..5470f9bb7b0 100644
--- a/gcc/longlong.h
+++ b/gcc/longlong.h
@@ -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; \