Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 29201
Collapse All | Expand All

(-)longlong.old (-1 / +3 lines)
Lines 715-722 Link Here
715
  } while (0)
715
  } while (0)
716
#define count_trailing_zeros(count, x)					\
716
#define count_trailing_zeros(count, x)					\
717
  do {									\
717
  do {									\
718
    UDItype __cbtmp;							\
718
    ASSERT ((x) != 0);							\
719
    ASSERT ((x) != 0);							\
719
    __asm__ ("bsfq %1,%0" : "=r" (count) : "rm" ((UDItype)(x)));	\
720
    __asm__ ("bsfq %1,%0" : "=r" (__cbtmp) : "rm" ((UDItype)(x)));	\
721
   (count) = __cbtmp;							\
720
  } while (0)
722
  } while (0)
721
#endif /* x86_64 */
723
#endif /* x86_64 */
722
724

Return to bug 29201