| 78 | #define HAVE_INLINE_FLSL |
| 79 | |
| 80 | static __inline __pure2 int |
| 81 | flsl(long mask) |
| 82 | { |
| 83 | |
| 84 | return (mask == 0 ? 0 : |
| 85 | 8 * sizeof(mask) - __builtin_clzl((u_long)mask)); |
| 86 | } |
| 87 | |
| 88 | #define HAVE_INLINE_FLSLL |
| 89 |
no outgoing calls
no test coverage detected