One question still: On Nov 18, 2013, at 1:19 PM, Ben Pfaff <[email protected]> wrote: > return popcount(n) + popcount(n >> 32); > @@ -341,7 +332,7 @@ ctz(uint32_t n) > static inline int > ctz64(uint64_t n) > { > - return n ? raw_ctz64(n) : 64; > + return n ? raw_ctz(n) : 64; > } >
Did you intend to define ctz(uint64_t) and not define ctz64() at all? Jarno _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
