OSDN Git Service

Oops - omitted this part of xstormy16 patch to use __clzhi2() instead of __stormy16_c...
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 Dec 2009 11:15:50 +0000 (11:15 +0000)
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 Dec 2009 11:15:50 +0000 (11:15 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154905 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/longlong.h

index e1f8b35..5470f9b 100644 (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;                                                      \