diff options
author | Sam James <sam@gentoo.org> | 2024-10-28 18:24:14 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-10-28 18:24:21 +0000 |
commit | ca078d260a13aaf644fc871675a127c44aa12ccc (patch) | |
tree | 7a6c4f46ff7a65559b27b6c4b0396e30fd439606 /gcc | |
parent | 4e09ae37dbe0a10f48490214f50ff733cc92280a (diff) | |
download | gcc-ca078d260a13aaf644fc871675a127c44aa12ccc.zip gcc-ca078d260a13aaf644fc871675a127c44aa12ccc.tar.gz gcc-ca078d260a13aaf644fc871675a127c44aa12ccc.tar.bz2 |
gcc: fix 'statements' comment typo
gcc/ChangeLog:
* opts-common.cc (prune_options): Fix typo.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/opts-common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/opts-common.cc b/gcc/opts-common.cc index 2277445..ac2e77b 100644 --- a/gcc/opts-common.cc +++ b/gcc/opts-common.cc @@ -40,7 +40,7 @@ static void prune_options (struct cl_decoded_option **, unsigned int *); example, we want -gno-statement-frontiers to be taken as a negation of -gstatement-frontiers, but without catching the gno- prefix and signaling it's to be used for option remapping, it would end up - backtracked to g with no-statemnet-frontiers as the debug level. */ + backtracked to g with no-statement-frontiers as the debug level. */ static bool remapping_prefix_p (const struct cl_option *opt) |