This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [WIP PATCH] Add int128 detection


> +AC_CACHE_CHECK(if compiler supports __int128,libc_cv_have_int128,[dnl,

Spaces after the commas.  No comma after dnl.

> + AC_TRY_COMPILE([#include <stdint.h>],
> +                [ __int128 a = 0;
> +                  unsigned __int128 b = 1;

Drop the excess leading space after [ there and adjust following
indentation accordingly.

> +                  return 0;], libc_cv_have_int128=yes, libc_cv_have_int128=no)])

Break this line after the first comma so it's not too long.

With those nits, this configure change is OK.  But it should not go in
until there is something that actually uses it.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]