Skip to content

Commit 7e67993

Browse files
committed
rename the autoconf ac_ function to be consistent
1 parent 348a2f8 commit 7e67993

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

configure

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5020,7 +5020,7 @@ AS_VAR_IF([ac_cv_builtin_atomic], [yes], [
50205020
# Check for __builtin_shufflevector with 128-bit vector support on an
50215021
# architecture where it compiles to worthwhile native SIMD instructions.
50225022
# Used for SIMD-accelerated bytes.hex() in Python/pystrhex.c.
5023-
AC_CACHE_CHECK([for __builtin_shufflevector], [ac_cv_builtin_shufflevector], [
5023+
AC_CACHE_CHECK([for __builtin_shufflevector], [ac_cv_efficient_builtin_shufflevector], [
50245024
AC_LINK_IFELSE([
50255025
AC_LANG_PROGRAM([[
50265026
/* __builtin_shufflevector is available on many platforms, but 128-bit
@@ -5042,10 +5042,10 @@ AC_LINK_IFELSE([
50425042
(void)c;
50435043
return 0;
50445044
]])
5045-
],[ac_cv_builtin_shufflevector=yes],[ac_cv_builtin_shufflevector=no])
5045+
],[ac_cv_efficient_builtin_shufflevector=yes],[ac_cv_efficient_builtin_shufflevector=no])
50465046
])
50475047

5048-
AS_VAR_IF([ac_cv_builtin_shufflevector], [yes], [
5048+
AS_VAR_IF([ac_cv_efficient_builtin_shufflevector], [yes], [
50495049
AC_DEFINE([HAVE_EFFICIENT_BUILTIN_SHUFFLEVECTOR], [1],
50505050
[Define if compiler supports __builtin_shufflevector with 128-bit
50515051
vectors AND the target architecture has native SIMD (not just API

0 commit comments

Comments
 (0)