diff options
Diffstat (limited to 'gcc/scan-decls.c')
-rw-r--r-- | gcc/scan-decls.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/scan-decls.c b/gcc/scan-decls.c index e8309b813ec..253f3fc22b3 100644 --- a/gcc/scan-decls.c +++ b/gcc/scan-decls.c @@ -78,13 +78,13 @@ int scan_decls (pfile, argc, argv) cpp_reader *pfile; int argc; - char**argv; + char **argv; { int saw_extern, saw_inline; int old_written; /* If declarator_start is non-zero, it marks the start of the current declarator. If it is zero, we are either still parsing the - decl-specs, or prev_id_start marks the start of the declarator. */ + decl-specs, or prev_id_start marks the start of the declarator. */ int declarator_start; int prev_id_start, prev_id_end; enum cpp_token token; @@ -128,7 +128,7 @@ scan_decls (pfile, argc, argv) switch (token) { case CPP_LPAREN: - /* Looks like this is the start of a formal parameter list. */ + /* Looks like this is the start of a formal parameter list. */ if (prev_id_start) { int nesting = 1; @@ -187,7 +187,7 @@ scan_decls (pfile, argc, argv) pfile->token_buffer, prev_id_start); } - /* ... fall through ... */ + /* ... fall through ... */ maybe_handle_comma: if (token != CPP_COMMA) goto new_statement; @@ -228,7 +228,7 @@ scan_decls (pfile, argc, argv) goto handle_token; break; } - /* This may be the name of a variable or function. */ + /* This may be the name of a variable or function. */ prev_id_start = start_written; prev_id_end = CPP_WRITTEN (pfile); break; @@ -240,7 +240,7 @@ scan_decls (pfile, argc, argv) goto new_statement; /* handle_statement? */ case CPP_HSPACE: case CPP_VSPACE: case CPP_COMMENT: case CPP_POP: - /* Skip initial white space. */ + /* Skip initial white space. */ if (start_written == 0) CPP_SET_WRITTEN (pfile, 0); break; |