about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--soft-fp/op-common.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e6a9a40d52..da92463565 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-04-25  Maciej W. Rozycki  <macro@codesourcery.com>
+
+	* soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment.
+
 2013-04-24  Carlos O'Donell  <carlos@redhat.com>
 
 	* 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 a29cd9a8dd..a9d94d7f16 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);				\