c-format.c: Fix comment formatting.
* c-format.c: Fix comment formatting. * c-typeck.c: Likewise. * coverage.c: Likewise. * cppcharset.c: Likewise. * cpplib.c: Likewise. * dbxout.c: Likewise. * gcov-io.h: Likewise. * toplev.c: Likewise. From-SVN: r69276
This commit is contained in:
parent
0c6a2903e5
commit
4ed432168c
9 changed files with 20 additions and 9 deletions
|
@ -1,3 +1,14 @@
|
|||
2003-07-12 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* c-format.c: Fix comment formatting.
|
||||
* c-typeck.c: Likewise.
|
||||
* coverage.c: Likewise.
|
||||
* cppcharset.c: Likewise.
|
||||
* cpplib.c: Likewise.
|
||||
* dbxout.c: Likewise.
|
||||
* gcov-io.h: Likewise.
|
||||
* toplev.c: Likewise.
|
||||
|
||||
2003-07-12 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||
|
||||
* fixinc/inclhack.def (alpha_sbrk): Note that OpenBSD needs this
|
||||
|
|
|
@ -2619,7 +2619,7 @@ init_dynamic_diag_info (void)
|
|||
}
|
||||
if (t)
|
||||
{
|
||||
/* All specifiers taking a tree share the same struct. */
|
||||
/* All specifiers taking a tree share the same struct. */
|
||||
i = find_char_info_specifier_index (cdiag_fci, 'D');
|
||||
cdiag_fci[i].types[0].type = &t;
|
||||
cdiag_fci[i].pointer_count = 1;
|
||||
|
@ -2639,7 +2639,7 @@ init_dynamic_diag_info (void)
|
|||
}
|
||||
if (t)
|
||||
{
|
||||
/* All specifiers taking a tree share the same struct. */
|
||||
/* All specifiers taking a tree share the same struct. */
|
||||
i = find_char_info_specifier_index (cxxdiag_fci, 'D');
|
||||
cxxdiag_fci[i].types[0].type = &t;
|
||||
cxxdiag_fci[i].pointer_count = 1;
|
||||
|
|
|
@ -641,7 +641,7 @@ tagged_types_tu_compatible_p (tree t1, tree t2, int flags)
|
|||
/* We have to verify that the tags of the types are the same. This
|
||||
is harder than it looks because this may be a typedef, so we have
|
||||
to go look at the original type. It may even be a typedef of a
|
||||
typedef... */
|
||||
typedef... */
|
||||
while (TYPE_NAME (t1) && TREE_CODE (TYPE_NAME (t1)) == TYPE_DECL)
|
||||
t1 = DECL_ORIGINAL_TYPE (TYPE_NAME (t1));
|
||||
|
||||
|
|
|
@ -178,7 +178,7 @@ read_counts_file (void)
|
|||
return;
|
||||
}
|
||||
|
||||
/* Read and discard the stamp. */
|
||||
/* Read and discard the stamp. */
|
||||
gcov_read_unsigned ();
|
||||
|
||||
counts_hash = htab_create (10,
|
||||
|
|
|
@ -448,7 +448,7 @@ one_utf16_to_utf8 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
|
|||
|
||||
/* Helper routine for the next few functions. The 'const' on
|
||||
one_conversion means that we promise not to modify what function is
|
||||
pointed to, which lets the inliner see through it. */
|
||||
pointed to, which lets the inliner see through it. */
|
||||
|
||||
static inline bool
|
||||
conversion_loop (int (*const one_conversion)(iconv_t, const uchar **, size_t *,
|
||||
|
|
|
@ -559,7 +559,7 @@ undefine_macros (cpp_reader *pfile, cpp_hashnode *h,
|
|||
if (CPP_OPTION (pfile, warn_unused_macros))
|
||||
_cpp_warn_if_unused_macro (pfile, h, NULL);
|
||||
|
||||
/* and fall through... */
|
||||
/* and fall through... */
|
||||
case NT_ASSERTION:
|
||||
_cpp_free_definition (h);
|
||||
break;
|
||||
|
|
|
@ -562,7 +562,7 @@ dbxout_typedefs (tree syms)
|
|||
}
|
||||
|
||||
#ifdef DBX_USE_BINCL
|
||||
/* Emit BINCL stab using given name. */
|
||||
/* Emit BINCL stab using given name. */
|
||||
static void
|
||||
emit_bincl_stab (const char *name)
|
||||
{
|
||||
|
|
|
@ -454,7 +454,7 @@ GCOV_LINKAGE struct gcov_var
|
|||
functions, gcov_seek & gcov_error. When a file is to be rewritten
|
||||
you use the functions for reading, then gcov_rewrite then the
|
||||
functions for writing. Your file may become corrupted if you break
|
||||
these invariants. */
|
||||
these invariants. */
|
||||
#if IN_LIBGCOV
|
||||
GCOV_LINKAGE int gcov_open (const char */*name*/);
|
||||
#else
|
||||
|
|
|
@ -465,7 +465,7 @@ int mem_report = 0;
|
|||
and to print them when we are done. */
|
||||
int flag_detailed_statistics = 0;
|
||||
|
||||
/* A random sequence of characters, unless overridden by user. */
|
||||
/* A random sequence of characters, unless overridden by user. */
|
||||
const char *flag_random_seed;
|
||||
|
||||
/* A local time stamp derived from the time of compilation. It will be
|
||||
|
|
Loading…
Add table
Reference in a new issue