]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/libgcc2.c
gcc.c: Fix comment formatting.
[thirdparty/gcc.git] / gcc / libgcc2.c
index 0ab29f747ab70436d1549a719c3bc360e7e6b274..1c6685f8e3a2e617c78db618c01cba7bfd5536c1 100644 (file)
@@ -2654,11 +2654,11 @@ __clear_insn_cache (void)
   int save_errno;
 
   /* Preserve errno, because users would be surprised to have
-  errno changing without explicitly calling any system-call. */
+  errno changing without explicitly calling any system-call.  */
   save_errno = errno;
 
   /* Keep it simple : memctl (MCT_TEXT) always fully clears the insn cache.
-     No need to use an address derived from _start or %sp, as 0 works also. */
+     No need to use an address derived from _start or %sp, as 0 works also.  */
   memctl(0, 4096, MCT_TEXT);
   errno = save_errno;
 #endif