Skip to content

Commit 7ed7930

Browse files
author
Reid Spencer
committed
Remove the check for the ffsll function. Its no longer needed by the
simplify-libcalls pass (pass now computes it without a call to ffsll). llvm-svn: 22074
1 parent b57b28f commit 7ed7930

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

llvm/autoconf/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ dnl=== SECTION 8: Check for specific functions needed
484484
dnl===
485485
dnl===-----------------------------------------------------------------------===
486486

487-
AC_CHECK_FUNCS([backtrace ffsll getcwd getpagesize getrusage gettimeofday ])
487+
AC_CHECK_FUNCS([backtrace getcwd getpagesize getrusage gettimeofday ])
488488
AC_CHECK_FUNCS([isatty mkdtemp mkstemp mktemp ])
489489
AC_CHECK_FUNCS([realpath sbrk setrlimit strdup strerror strerror_r ])
490490
AC_CHECK_FUNCS([strtoll strtoq sysconf])

llvm/configure

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27226,8 +27226,7 @@ fi
2722627226

2722727227

2722827228

27229-
27230-
for ac_func in backtrace ffsll getcwd getpagesize getrusage gettimeofday
27229+
for ac_func in backtrace getcwd getpagesize getrusage gettimeofday
2723127230
do
2723227231
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
2723327232
echo "$as_me:$LINENO: checking for $ac_func" >&5

llvm/include/llvm/Config/config.h.in

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@
9191
/* Define to 1 if you have the <fcntl.h> header file. */
9292
#undef HAVE_FCNTL_H
9393

94-
/* Define to 1 if you have the `ffsll' function. */
95-
#undef HAVE_FFSLL
96-
9794
/* Set to 1 if the finite function is found in <ieeefp.h> */
9895
#undef HAVE_FINITE_IN_IEEEFP_H
9996

0 commit comments

Comments
 (0)