diff options
author | Sam James <sam@gentoo.org> | 2024-10-03 02:47:55 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-10-04 04:35:21 +0100 |
commit | 4f0026c26fe0a24a44187cb376a819c6fd976c97 (patch) | |
tree | ec4c79d715be0560298b0abdf1f7bfa45dbdc16f | |
parent | 68d88d9b68f5b8a952ded65607af32f9244c8d87 (diff) | |
download | gcc-4f0026c26fe0a24a44187cb376a819c6fd976c97.zip gcc-4f0026c26fe0a24a44187cb376a819c6fd976c97.tar.gz gcc-4f0026c26fe0a24a44187cb376a819c6fd976c97.tar.bz2 |
gcc: fix typo in gimplify
gcc/ChangeLog:
* gimplify.cc (gimple_add_init_for_auto_var): Fix 'variable' typo.
-rw-r--r-- | gcc/gimplify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimplify.cc b/gcc/gimplify.cc index ceb53e5..dd7efa7 100644 --- a/gcc/gimplify.cc +++ b/gcc/gimplify.cc @@ -2019,7 +2019,7 @@ gimple_add_init_for_auto_var (tree decl, gimplify_assign (decl, call, seq_p); } -/* Generate padding initialization for automatic vairable DECL. +/* Generate padding initialization for automatic variable DECL. C guarantees that brace-init with fewer initializers than members aggregate will initialize the rest of the aggregate as-if it were static initialization. In turn static initialization guarantees |