]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/fold-const.c
c-common.c, [...]: Fix comment formatting.
[gcc.git] / gcc / fold-const.c
index d8c511a615ebf66ab4eb980dfab512b33cb69797..a86fb4c1187b5981ba3c44b9062c0d8ad238e9f4 100644 (file)
@@ -10584,7 +10584,7 @@ round_up (tree value, int divisor)
   /* See if VALUE is already a multiple of DIVISOR.  If so, we don't
      have to do anything.  Only do this when we are not given a const,
      because in that case, this check is more expensive than just
-     doing it. */
+     doing it.  */
   if (TREE_CODE (value) != INTEGER_CST)
     {
       div = build_int_cst (TREE_TYPE (value), divisor);
@@ -10629,7 +10629,7 @@ round_down (tree value, int divisor)
   /* See if VALUE is already a multiple of DIVISOR.  If so, we don't
      have to do anything.  Only do this when we are not given a const,
      because in that case, this check is more expensive than just
-     doing it. */
+     doing it.  */
   if (TREE_CODE (value) != INTEGER_CST)
     {
       div = build_int_cst (TREE_TYPE (value), divisor);
This page took 0.036856 seconds and 5 git commands to generate.