From: Paulo Matos Date: Tue, 7 Jul 2015 11:25:35 +0000 (+0000) Subject: symtab.c (address_matters_1): Fix typo in comment above. X-Git-Tag: upstream/12.2.0~53705 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2005b056879571d188556c5696b7d80e87693e7f;p=platform%2Fupstream%2Fgcc.git symtab.c (address_matters_1): Fix typo in comment above. 2015-07-07 Paulo Matos * symtab.c (address_matters_1): Fix typo in comment above. (can_increase_alignment_p): Likewise. From-SVN: r225509 --- 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 + + * symtab.c (address_matters_1): Fix typo in comment above. + (can_increase_alignment_p): Likewise. + 2015-07-07 Prathamesh Kulkarni * 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)