diff options
author | Jakub Jelinek <jakub@redhat.com> | 2022-02-25 11:00:39 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2022-02-25 11:00:39 +0100 |
commit | 873b36af995f7f02bb6153320e35649a5d33b5fd (patch) | |
tree | 104413f6a1a8cc292d41a196cb52995559635d6c | |
parent | 526fbcfa636fb7e544c1ad69101dbccecbee8b28 (diff) | |
download | gcc-873b36af995f7f02bb6153320e35649a5d33b5fd.zip gcc-873b36af995f7f02bb6153320e35649a5d33b5fd.tar.gz gcc-873b36af995f7f02bb6153320e35649a5d33b5fd.tar.bz2 |
warning-control: Comment spelling fix
This fixes a spelling mistake I found while looking at warning-control
implementation.
2022-02-25 Jakub Jelinek <jakub@redhat.com>
* warning-control.cc (get_nowarn_spec): Comment spelling fix.
-rw-r--r-- | gcc/warning-control.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/warning-control.cc b/gcc/warning-control.cc index fa39eca..0cbb4f0 100644 --- a/gcc/warning-control.cc +++ b/gcc/warning-control.cc @@ -98,7 +98,7 @@ get_nowarn_spec (const_tree expr) return nowarn_map ? nowarn_map->get (loc) : NULL; } -/* Return the no-warning bitmap for stateemt STMT. */ +/* Return the no-warning bitmap for statement STMT. */ static nowarn_spec_t * get_nowarn_spec (const gimple *stmt) |