Update comment in gimple-ssa-store-merging.c
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>
Fri, 14 Jul 2017 09:11:20 +0000 (09:11 +0000)
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>
Fri, 14 Jul 2017 09:11:20 +0000 (09:11 +0000)
* gimple-ssa-store-merging.c (clear_bit_region): Replace reference to
loop in comment with memset.

From-SVN: r250201

gcc/ChangeLog
gcc/gimple-ssa-store-merging.c

index 0a970d7eb93f3aa103bdef551cf18fc4737907de..a4f5397e43d9e5cddb5ee2b577f22f7ed21e089b 100644 (file)
@@ -1,3 +1,8 @@
+2017-07-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       * gimple-ssa-store-merging.c (clear_bit_region): Replace reference to
+       loop in comment with memset.
+
 2017-07-14  Martin Liska  <mliska@suse.cz>
 
        * cfgexpand.c (expand_gimple_basic_block): Remove dead comment.
index 64b83517c7a2f43c2a585700815537586e7a7083..5e9227314b8641dd524f025d104f4aae12415cc7 100644 (file)
@@ -331,8 +331,8 @@ clear_bit_region (unsigned char *ptr, unsigned int start,
   else if (start == 0 && len > BITS_PER_UNIT)
     {
       unsigned int nbytes = len / BITS_PER_UNIT;
-      /* We could recurse on each byte but do the loop here to avoid
-        recursing too deep.  */
+      /* We could recurse on each byte but we clear whole bytes, so a simple
+        memset will do.  */
       memset (ptr, '\0', nbytes);
       /* Clear the remaining sub-byte region if there is one.  */
       if (len % BITS_PER_UNIT != 0)