summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorNathan Moinvaziri <nathan@nathanm.com>2020-05-07 08:13:14 -0700
committerHans Kristian Rosbach <hk-github@circlestorm.org>2020-05-24 13:53:25 +0200
commitcf3f8bd671537820e423e212ebba2fb0a90b16cc (patch)
treeec7a96da96a12ead41e2b70ff86116ae44272ed0 /configure
parent8785c980fd47819fe0b5414cf7f188ff12a865c8 (diff)
Removed fallback for __builtin_ctzl since it is no longer used.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 0 insertions, 17 deletions
diff --git a/configure b/configure
index a0c8f60..463ae44 100755
--- a/configure
+++ b/configure
@@ -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) {