[PATCH] Fix typo in gcc/asan.c comment
authorAhamed Husni <ahamedhusni73@gmail.com>
Sat, 20 Mar 2021 15:17:23 +0000 (09:17 -0600)
committerJeff Law <jlaw@tachyum.com>
Sat, 20 Mar 2021 15:17:23 +0000 (09:17 -0600)
gcc/
* asan.c: Fix typos in comments.

gcc/asan.c

index 89ecd99..d7449ce 100644 (file)
@@ -105,7 +105,7 @@ along with GCC; see the file COPYING3.  If not see
      int
      foo ()
      {
-       char a[23] = {0};
+       char a[24] = {0};
        int b[2] = {0};
 
        a[5] = 1;
@@ -1634,7 +1634,7 @@ asan_redzone_buffer::flush_if_full (void)
      int
      foo ()
      {
-       char a[23] = {0};
+       char a[24] = {0};
        int b[2] = {0};
 
        a[5] = 1;