https://gcc.gnu.org/g:1d10857be3c80810788d1941092c30144a106096
commit r17-2383-g1d10857be3c80810788d1941092c30144a106096 Author: Jakub Jelinek <[email protected]> Date: Tue Jul 14 07:58:30 2026 +0200 asan: Fix comment typo This fixes a comment typo in asan.h. 2026-07-14 Jakub Jelinek <[email protected]> * asan.h (asan_var_and_redzone_size): Fix comment typo, occupis -> occupies. Diff: --- gcc/asan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/asan.h b/gcc/asan.h index aa31f491663b..48499115539c 100644 --- a/gcc/asan.h +++ b/gcc/asan.h @@ -158,7 +158,7 @@ asan_red_zone_size (unsigned int size) return c ? 2 * ASAN_RED_ZONE_SIZE - c : ASAN_RED_ZONE_SIZE; } -/* Return how much a stack variable occupis on a stack +/* Return how much a stack variable occupies on a stack including a space for red zone. */ inline unsigned HOST_WIDE_INT
