diff options
author | Jakub Jelinek <jakub@redhat.com> | 2020-02-18 08:54:52 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2020-02-18 08:54:52 +0100 |
commit | 8def1d525c52f0f7fccd90f3c4624a8fe6c42882 (patch) | |
tree | a6c529f024b0386cbf9454d3ae6eda28b0b8311b /gcc/tree.c | |
parent | abb4852434b3dee26301cc406472ac9450c621aa (diff) | |
download | gcc-8def1d525c52f0f7fccd90f3c4624a8fe6c42882.zip gcc-8def1d525c52f0f7fccd90f3c4624a8fe6c42882.tar.gz gcc-8def1d525c52f0f7fccd90f3c4624a8fe6c42882.tar.bz2 |
Typo fixes - functoin -> function [PR93796]
2020-02-18 Jakub Jelinek <jakub@redhat.com>
PR driver/93796
* params.opt (-param=ipa-max-switch-predicate-bounds=): Fix help
typo, functoin -> function.
* tree.c (free_lang_data_in_decl): Fix comment typo,
functoin -> function.
* ipa-visibility.c (cgraph_externally_visible_p): Likewise.
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5803,7 +5803,7 @@ free_lang_data_in_decl (tree decl, class free_lang_data_d *fld) } else if (VAR_P (decl)) { - /* See comment above why we set the flag for functoins. */ + /* See comment above why we set the flag for functions. */ if (TREE_PUBLIC (decl)) TREE_ADDRESSABLE (decl) = true; if ((DECL_EXTERNAL (decl) |