* lib/autoconf/types.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Make comment match

gnulib.
This commit is contained in:
Paul Eggert 2007-11-14 15:42:59 -08:00
parent f32d0d7753
commit 675668479d
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-11-14 Paul Eggert <eggert@cs.ucla.edu>
* lib/autoconf/types.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Make comment match
gnulib.
2007-11-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* lib/autoconf/status.m4: Fix a couple of comment typos.

View File

@ -475,7 +475,11 @@ You should use `AC_TYPE_LONG_DOUBLE' or `AC_TYPE_LONG_DOUBLE_WIDER' instead.]
AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET],
[
AC_LANG_PROGRAM(
[[/* Test literals. */
[[/* For now, do not test the preprocessor; as of 2007 there are too many
implementations with broken preprocessors. Perhaps this can
be revisited in 2012. In the meantime, code should not expect
#if to work with literals wider than 32 bits. */
/* Test literals. */
long long int ll = 9223372036854775807ll;
long long int nll = -9223372036854775807LL;
unsigned long long int ull = 18446744073709551615ULL;