diff options
author | Jakub Jelinek <jakub@redhat.com> | 2023-05-09 12:46:21 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2023-05-09 12:46:21 +0200 |
commit | e24b74fc43b63ed6bfca265f98f681dca60a5c97 (patch) | |
tree | d611b52c1ef9ebc3a4b3153c60d94868a66267fb | |
parent | c2cf2dc988eb93551fa1c01d3f8d73ef21f39dc5 (diff) | |
download | gcc-e24b74fc43b63ed6bfca265f98f681dca60a5c97.zip gcc-e24b74fc43b63ed6bfca265f98f681dca60a5c97.tar.gz gcc-e24b74fc43b63ed6bfca265f98f681dca60a5c97.tar.bz2 |
mux-utils.h: Fix a comment typo
Trivial comment typo...
2023-05-09 Jakub Jelinek <jakub@redhat.com>
* mux-utils.h: Fix comment typo, avoides -> avoids.
-rw-r--r-- | gcc/mux-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/mux-utils.h b/gcc/mux-utils.h index 1023540..a2b6a31 100644 --- a/gcc/mux-utils.h +++ b/gcc/mux-utils.h @@ -34,7 +34,7 @@ // and having a separate tag bit to indicate which alternative is active. // However, using this class can have two advantages over a union: // -// - It avoides the need to find somewhere to store the tag bit. +// - It avoids the need to find somewhere to store the tag bit. // // - The compiler is aware that B cannot be null, which can make checks // of the form: |