X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fminus-zero.m4;h=c27e3783942f21dfef1bc66f1e400ba0c9fbb9a8;hb=da8054d48dc22e1c051db54049e005d51a006e69;hp=77d224baa116f6a4bbb08af30ff38f72cbb886a8;hpb=d60f3b0c6b0f93a601acd1cfd3923f94ca05abb0;p=gnulib.git diff --git a/m4/minus-zero.m4 b/m4/minus-zero.m4 index 77d224baa..c27e37839 100644 --- a/m4/minus-zero.m4 +++ b/m4/minus-zero.m4 @@ -1,5 +1,5 @@ -# minus-zero.m4 serial 1 -dnl Copyright (C) 2010-2011 Free Software Foundation, Inc. +# minus-zero.m4 serial 2 +dnl Copyright (C) 2010-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -15,7 +15,7 @@ AC_DEFUN([gl_FLOAT_MINUS_ZERO_CODE], /* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0f. ICC 10.0 has a bug when optimizing the expression -zero. The expression -FLT_MIN * FLT_MIN does not work when cross-compiling - to PowerPC on MacOS X 10.5. */ + to PowerPC on Mac OS X 10.5. */ #if defined __hpux || defined __sgi || defined __ICC static float compute_minus_zerof (void) @@ -36,7 +36,7 @@ AC_DEFUN([gl_DOUBLE_MINUS_ZERO_CODE], /* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0. ICC 10.0 has a bug when optimizing the expression -zero. The expression -DBL_MIN * DBL_MIN does not work when cross-compiling - to PowerPC on MacOS X 10.5. */ + to PowerPC on Mac OS X 10.5. */ #if defined __hpux || defined __sgi || defined __ICC static double compute_minus_zerod (void) @@ -62,7 +62,7 @@ AC_DEFUN([gl_LONG_DOUBLE_MINUS_ZERO_CODE], IRIX cc can't put -0.0L into .data, but can compute at runtime. ICC 10.0 has a bug when optimizing the expression -zero. The expression -LDBL_MIN * LDBL_MIN does not work when cross-compiling - to PowerPC on MacOS X 10.5. */ + to PowerPC on Mac OS X 10.5. */ #if defined __hpux || defined __sgi || defined __ICC static long double compute_minus_zerol (void)