diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-23 15:27:37 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-23 15:27:37 +0000 |
commit | 71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d (patch) | |
tree | e01bf4ee4ed8ca0042861ba7004bed92770df135 /gcc/coverage.c | |
parent | 164131ce2b0389a0ae7254e468c5c7bcada48b28 (diff) | |
download | gcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.zip gcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.tar.gz gcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.tar.bz2 |
basic-block.h: Fix comment formatting.
* basic-block.h: Fix comment formatting.
* bt-load.c: Likewise.
* builtins.c: Likewise.
* c-common.c: Likewise.
* c-common.h: Likewise.
* c-format.c: Likewise.
* coverage.c: Likewise.
* cpplib.h: Likewise.
* cpppch.c: Likewise.
* dbxout.c: Likewise.
* diagnostic.c: Likewise.
* dwarf2out.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* gcc.c: Likewise.
* gcov-io.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* profile.c: Likewise.
* real.h: Likewise.
* sched-deps.c: Likewise.
From-SVN: r68369
Diffstat (limited to 'gcc/coverage.c')
-rw-r--r-- | gcc/coverage.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/coverage.c b/gcc/coverage.c index 18614b3..11f5a76 100644 --- a/gcc/coverage.c +++ b/gcc/coverage.c @@ -81,7 +81,7 @@ static unsigned prg_ctr_mask; /* Mask of counter types generated. */ static unsigned prg_n_ctrs[GCOV_COUNTERS]; /* Total counters allocated. */ /* Counter information for current function. */ -static unsigned fn_ctr_mask; /* Mask of counters used. */ +static unsigned fn_ctr_mask; /* Mask of counters used. */ static unsigned fn_n_ctrs[GCOV_COUNTERS]; /* Counters allocated. */ static unsigned fn_b_ctrs[GCOV_COUNTERS]; /* Allocation base. */ @@ -305,7 +305,7 @@ get_coverage_counts (unsigned counter, unsigned expected, { counts_entry_t *entry, elt; - /* No hash table, no counts. */ + /* No hash table, no counts. */ if (!counts_hash) { static int warned = 0; @@ -386,7 +386,7 @@ coverage_counter_ref (unsigned counter, unsigned no) } /* Generate a checksum for a string. CHKSUM is the current - checksum. */ + checksum. */ static unsigned checksum_string (unsigned chksum, const char *string) @@ -881,7 +881,7 @@ create_coverage () } /* Perform file-level initialization. Read in data file, generate name - of graph file. */ + of graph file. */ void coverage_init (filename) |