diff options
author | Nick Clifton <nickc@gcc.gnu.org> | 2009-12-02 11:15:50 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2009-12-02 11:15:50 +0000 |
commit | 2a14229d98427612881d2f14195f31c810769883 (patch) | |
tree | 7765cf5e5050480f7c28d50a99bad81c7ec7da10 /gcc | |
parent | dafcb54e4299b68d8498b5eee92fdcd8f79f6330 (diff) | |
download | gcc-2a14229d98427612881d2f14195f31c810769883.zip gcc-2a14229d98427612881d2f14195f31c810769883.tar.gz gcc-2a14229d98427612881d2f14195f31c810769883.tar.bz2 |
Oops - omitted this part of xstormy16 patch to use __clzhi2() instead of __stormy16_count_leading_zeros.
From-SVN: r154905
Diffstat (limited to 'gcc')
-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 e1f8b35..5470f9b 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; \ |