aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-08-19 21:04:38 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-08-19 21:04:38 +0000
commit59e4e217ae04230110961dfa6e0d7905189e7edc (patch)
tree65a1b182fb86bfce6ef7b7223a461de628f18346 /gcc/c-common.c
parent1ee93c1b047f574e69996666ff3f740ac56705e4 (diff)
downloadgcc-59e4e217ae04230110961dfa6e0d7905189e7edc.zip
gcc-59e4e217ae04230110961dfa6e0d7905189e7edc.tar.gz
gcc-59e4e217ae04230110961dfa6e0d7905189e7edc.tar.bz2
c-common.c: Fix comment formatting.
* c-common.c: Fix comment formatting. * c-common.h: Likewise. * c-decl.c: Likewise. * cppinit.c: Likewise. * cpplib.h: Likewise. * emit-rtl.c: Likewise. * input.h: Likewise. * line-map.h: Likewise. * opts.c: Likewise. * opts.h: Likewise. * simplify-rtx.c: Likewise. From-SVN: r70577
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index 7b09e5d..cc9caf7 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -413,7 +413,7 @@ int warn_main;
int warn_sequence_point;
/* Nonzero means warn about uninitialized variable when it is initialized with itself.
- For example: int i = i;, GCC will not warn about this when warn_init_self is nonzero. */
+ For example: int i = i;, GCC will not warn about this when warn_init_self is nonzero. */
int warn_init_self;
@@ -5739,7 +5739,7 @@ c_estimate_num_insns (tree decl)
static tree
c_decl_uninit_1 (tree *t, int *walk_sub_trees, void *x)
{
- /* If x = EXP(&x)EXP, then do not warn about the use of x. */
+ /* If x = EXP(&x)EXP, then do not warn about the use of x. */
if (TREE_CODE (*t) == ADDR_EXPR && TREE_OPERAND (*t, 0) == x)
{
*walk_sub_trees = 0;
@@ -5755,11 +5755,11 @@ c_decl_uninit_1 (tree *t, int *walk_sub_trees, void *x)
bool
c_decl_uninit (tree t)
{
- /* int x = x; is GCC extension to turn off this warning, only if warn_init_self is zero. */
+ /* int x = x; is GCC extension to turn off this warning, only if warn_init_self is zero. */
if (DECL_INITIAL (t) == t)
return warn_init_self ? true : false;
- /* Walk the trees looking for the variable itself. */
+ /* Walk the trees looking for the variable itself. */
if (walk_tree_without_duplicates (&DECL_INITIAL (t), c_decl_uninit_1, t))
return true;
return false;