diff options
author | Paulo Matos <pmatos@broadcom.com> | 2015-07-07 11:25:35 +0000 |
---|---|---|
committer | Paulo Matos <pmatos@gcc.gnu.org> | 2015-07-07 13:25:35 +0200 |
commit | 2005b056879571d188556c5696b7d80e87693e7f (patch) | |
tree | f06a96fca045f2a4b019e5cb3db895afa18d0781 /gcc | |
parent | b11f11a197219c78e58eb7dcf3b6e95b86327f0b (diff) | |
download | gcc-2005b056879571d188556c5696b7d80e87693e7f.zip gcc-2005b056879571d188556c5696b7d80e87693e7f.tar.gz gcc-2005b056879571d188556c5696b7d80e87693e7f.tar.bz2 |
symtab.c (address_matters_1): Fix typo in comment above.
2015-07-07 Paulo Matos <pmatos@broadcom.com>
* symtab.c (address_matters_1): Fix typo in comment above.
(can_increase_alignment_p): Likewise.
From-SVN: r225509
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/symtab.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d955bc0..6dab8a1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-07-07 Paulo Matos <pmatos@broadcom.com> + + * symtab.c (address_matters_1): Fix typo in comment above. + (can_increase_alignment_p): Likewise. + 2015-07-07 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> * function.c (free_after_compilation): Clear PROP_cfg in f->curr_properties. diff --git a/gcc/symtab.c b/gcc/symtab.c index aa5162e..b427827 100644 --- a/gcc/symtab.c +++ b/gcc/symtab.c @@ -1876,7 +1876,7 @@ symtab_node::call_for_symbol_and_aliases_1 (bool (*callback) (symtab_node *, return false; } -/* Return ture if address of N is possibly compared. */ +/* Return true if address of N is possibly compared. */ static bool address_matters_1 (symtab_node *n, void *) @@ -1904,7 +1904,7 @@ symtab_node::address_matters_p () return call_for_symbol_and_aliases (address_matters_1, NULL, true); } -/* Return ture if symbol's alignment may be increased. */ +/* Return true if symbol's alignment may be increased. */ bool symtab_node::can_increase_alignment_p (void) |