aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/riscv/math-use-builtins-ffs.h
blob: 97d13e94966357cc76874e07c4df51a02ad77b3f (plain)
1
2
3
4
5
6
7
8
9
10
#if __GNUC_PREREQ (12, 0) && defined __riscv_zbb
#  define USE_FFS_BUILTIN 1
#  define USE_FFSLL_BUILTIN 1
#elif __GNUC_PREREQ (13, 0) && defined __riscv_xtheadbb
#  define USE_FFS_BUILTIN 0
#  define USE_FFSLL_BUILTIN 1
#else
#  define USE_FFS_BUILTIN 0
#  define USE_FFSLL_BUILTIN 0
#endif