aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-decl.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-07-22 23:15:30 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-07-22 23:15:30 +0000
commit938d968ed373057812cd43a9b420399fb65f6c0b (patch)
tree218203f16ff3e11b33a888e58c0921f40c76b2e5 /gcc/c-decl.c
parentb3147029a5847526b07b9d4823e3beec3c315402 (diff)
downloadgcc-938d968ed373057812cd43a9b420399fb65f6c0b.zip
gcc-938d968ed373057812cd43a9b420399fb65f6c0b.tar.gz
gcc-938d968ed373057812cd43a9b420399fb65f6c0b.tar.bz2
alias.c: Fix comment formatting.
* alias.c: Fix comment formatting. * c-common.c: Likewise. * c-decl.c: Likewise. * c-opts.c: Likewise. * combine.c: Likewise. * cpplib.c: Likewise. * diagnostic.c: Likewise. * dojump.c: Likewise. * final.c: Likewise. * fold-const.c: Likewise. * gcc.c: Likewise. * gcse.c: Likewise. * ggc-page.c: Likewise. * jump.c: Likewise. * loop.c: Likewise. * mips-tfile.c: Likewise. * recog.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * tree.c: Likewise. * tree.h: Likewise. From-SVN: r69689
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r--gcc/c-decl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 6f5e631..cb032ea 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -5164,11 +5164,11 @@ finish_struct (tree t, tree fieldlist, tree attributes)
{
field_array[len++] = x;
- /* if there is anonymous struct or union break out of the loop */
+ /* If there is anonymous struct or union, break out of the loop. */
if (DECL_NAME (x) == NULL)
break;
}
- /* found no anonymous struct/union add the TYPE_LANG_SPECIFIC. */
+ /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
if (x == NULL)
{
TYPE_LANG_SPECIFIC (t) = space;