From: Maciej W. Rozycki Date: Thu, 25 Apr 2013 15:01:21 +0000 (+0100) Subject: soft-fp: s/sNAN/NAN/ -- no sNaNs are ever produced. X-Git-Tag: glibc-2.18~376 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93fd48c5f633dac3a81a01147688c5d7a429cb58;p=thirdparty%2Fglibc.git soft-fp: s/sNAN/NAN/ -- no sNaNs are ever produced. --- diff --git a/ChangeLog b/ChangeLog index e6a9a40d523..da92463565c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-04-25 Maciej W. Rozycki + + * soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment. + 2013-04-24 Carlos O'Donell * math/libm-test.inc (cos_test): Use accurate hex constants. diff --git a/soft-fp/op-common.h b/soft-fp/op-common.h index a29cd9a8dd7..a9d94d7f164 100644 --- a/soft-fp/op-common.h +++ b/soft-fp/op-common.h @@ -973,7 +973,7 @@ do { \ R##_s = 0; \ if (X##_s) \ { \ - R##_c = FP_CLS_NAN; /* sNAN */ \ + R##_c = FP_CLS_NAN; /* NAN */ \ R##_s = _FP_NANSIGN_##fs; \ _FP_FRAC_SET_##wc(R, _FP_NANFRAC_##fs); \ FP_SET_EXCEPTION(FP_EX_INVALID); \