[PATCH v2] intl: reintroduce unintentionally disabled optimization
Mike Frysinger
vapier@gentoo.org
Mon Feb 22 09:17:00 GMT 2016
On 24 Jan 2016 21:13, Dmitry V. Levin wrote:
> HAVE_BUILTIN_EXPECT macro was removed by commit glibc-2.14-280-g3ce1f29,
> but then its use was unintentionally reintroduced during merge with GNU
> gettext 0.19.3 by commit glibc-2.20-324-g6d24885, effectively disabling
> all optimization based on __builtin_expect. As intl files are also part
> of GNU gettext, HAVE_BUILTIN_EXPECT macro cannot be removed, so define
> it unconditionally in config.h.in instead.
>
> [BZ #19512]
> * config.h.in (HAVE_BUILTIN_EXPECT): New macro.
> ---
> config.h.in | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/config.h.in b/config.h.in
> index ec9c8bc..13c0044 100644
> --- a/config.h.in
> +++ b/config.h.in
> @@ -37,6 +37,11 @@
> /* Define if static NSS modules are wanted. */
> #undef DO_STATIC_NSS
>
> +/* Assume that the compiler supports __builtin_expect.
> + This macro is necessary for proper compilation of code
> + shared between GNU libc and GNU gettext projects. */
> +#define HAVE_BUILTIN_EXPECT 1
> +
> /* Define if the compiler supports __builtin_memset. */
> #undef HAVE_BUILTIN_MEMSET
shouldn't this be an AC_DEFINE in configure.ac instead ?
or do we not have a policy for that ?
it doesn't matter *that* much as long as we avoid autoheader,
although it would be nice if we didn't ...
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://sourceware.org/pipermail/libc-alpha/attachments/20160222/d736354a/attachment.sig>
More information about the Libc-alpha
mailing list