-
ZIMMERMANN Paul authored
Avoid usage of "long" which has no fixed width, prefer "int64_t" (same for unsigned long) Avoid usage of 1ul, prefer (uint64_t)1 (same for 1l). Use __builtin_clzll instead of __builtin_clzl (same for __builtin_ctzl).
ZIMMERMANN Paul authoredAvoid usage of "long" which has no fixed width, prefer "int64_t" (same for unsigned long) Avoid usage of 1ul, prefer (uint64_t)1 (same for 1l). Use __builtin_clzll instead of __builtin_clzl (same for __builtin_ctzl).
Loading