ClickHouse/dbms/include/DB/Common/ARMHelpers.h
2016-01-16 03:45:19 +03:00

12 lines
164 B
C

#pragma once
#if !defined(__x86_64__)
inline unsigned int _bit_scan_reverse(unsigned int x)
{
return sizeof(unsigned int) * 8 - 1 - __builtin_clz(x);
}
#endif