Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ AC_MSG_CHECKING(for __builtin_ctz)
AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[],
[[volatile int test_ctz = __builtin_ctz(1); (void)test_ctz; /* Supported in GCC 3.4 or later */]]
[[return __builtin_ctz(1U); /* Supported in GCC 3.4 or later */]]
)],
AC_DEFINE([HAVE_BUILTIN_CTZ], 1, [Define to 1 if the compiler supports '__builtin_ctz' function.])
AC_MSG_RESULT(yes),
Expand Down
Loading