* sb.c (sb_check): Use __builtin_clzll when size_t is not the
[deliverable/binutils-gdb.git] / gas / sb.c
index f68402fc470f6af031241d32f62d7388e1af6246..f21f46e9d27c27efeb1e918062bbd8ad36b3f661 100644 (file)
--- a/gas/sb.c
+++ b/gas/sb.c
@@ -137,7 +137,10 @@ sb_check (sb *ptr, size_t len)
       if ((ssize_t) want < 0)
        as_fatal ("string buffer overflow");
 #if GCC_VERSION >= 3004
-      max = (size_t) 1 << (CHAR_BIT * sizeof (want) - __builtin_clzl (want));
+      max = (size_t) 1 << (CHAR_BIT * sizeof (want)
+                          - (sizeof (want) <= sizeof (long)
+                             ? __builtin_clzl ((long) want)
+                             : __builtin_clzll ((long long) want)));
 #else
       max = 128;
       while (want > max)
This page took 0.023442 seconds and 4 git commands to generate.