Skip to content

Commit

Permalink
[PATCH] Fix typo in gcc/asan.c comment
Browse files Browse the repository at this point in the history
gcc/
	* asan.c: Fix typos in comments.
  • Loading branch information
husni-faiz authored and Jeff Law committed Mar 20, 2021
1 parent 8bf983c commit 9c2f084
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gcc/asan.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 9c2f084

Please sign in to comment.