diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-05-07 08:13:14 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-05-24 13:53:25 +0200 |
commit | cf3f8bd671537820e423e212ebba2fb0a90b16cc (patch) | |
tree | ec7a96da96a12ead41e2b70ff86116ae44272ed0 /configure | |
parent | 8785c980fd47819fe0b5414cf7f188ff12a865c8 (diff) |
Removed fallback for __builtin_ctzl since it is no longer used.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -869,23 +869,6 @@ else echo "Checking for __builtin_ctz ... No." | tee -a configure.log fi -# Check for __builtin_ctzl() support in compiler -cat > $test.c << EOF -int main(void) { - unsigned int zero = 0; - long test = __builtin_ctzl(zero); - (void)test; - return 0; -} -EOF -if try ${CC} ${CFLAGS} $test.c $LDSHAREDLIBC; then - echo "Checking for __builtin_ctzl ... Yes." | tee -a configure.log - CFLAGS="$CFLAGS -DHAVE_BUILTIN_CTZL" - SFLAGS="$SFLAGS -DHAVE_BUILTIN_CTZL" -else - echo "Checking for __builtin_ctzl ... No." | tee -a configure.log -fi - # Check for __builtin_ctzll() support in compiler cat > $test.c << EOF int main(void) { |