diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-12-02 11:15:50 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-12-02 11:15:50 +0000 |
commit | b1fe3927a8eb81b8a6ce0ffd5a824968a4255b7c (patch) | |
tree | 7765cf5e5050480f7c28d50a99bad81c7ec7da10 /gcc/longlong.h | |
parent | e4d9e8e56c07a324f92dadc8f3c63cc2339a35bd (diff) | |
download | gcc-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.h | 2 |
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; \ |