]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/real.c
basic-block.h: Fix comment formatting.
[thirdparty/gcc.git] / gcc / real.c
index bc30a93795f9166908e4071b5f63098fefc94ac6..fdac05d54cf9b02684bfb3f4d4f9798fcd5c6cd5 100644 (file)
@@ -129,14 +129,14 @@ unknown arithmetic type
 
 #define REAL_WORDS_BIG_ENDIAN FLOAT_WORDS_BIG_ENDIAN
 
-/* Make sure that the endianness is correct for IBM and DEC. */
+/* Make sure that the endianness is correct for IBM and DEC.  */
 #if defined(DEC)
 #undef LARGEST_EXPONENT_IS_NORMAL
 #define LARGEST_EXPONENT_IS_NORMAL(x) 1
 #undef REAL_WORDS_BIG_ENDIAN
 /* Strangely enough, DEC float most closely resembles big endian IEEE */
 #define REAL_WORDS_BIG_ENDIAN 1
-/* ... but the halfwords are reversed from IEEE big endian. */
+/* ... but the halfwords are reversed from IEEE big endian.  */
 #ifndef VAX_HALFWORD_ORDER
 #define VAX_HALFWORD_ORDER 1
 #endif
@@ -3942,7 +3942,7 @@ toieee (x, y, fmt)
     }
 
   /* Shift denormal double extended Intel format significand down
-     one bit. */
+     one bit.  */
   if (fmt->precision == 64 && x[E] == 0 && ! REAL_WORDS_BIG_ENDIAN)
     eshdn1 (x);