diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-29 13:53:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-29 13:53:12 +0000 |
commit | f9da50645221cfa880519542a1c5e37c53837bef (patch) | |
tree | 096f08da7ff43d0c89a0ae297b1089589ba63a46 /gcc/gcov.c | |
parent | 329d586fe57ac58fb541855cf8e329b9f5cb5cff (diff) | |
download | gcc-f9da50645221cfa880519542a1c5e37c53837bef.tar.gz |
alloc-pool.c: Fix comment formatting.
* alloc-pool.c: Fix comment formatting.
* bitmap.c: Likewise.
* bitmap.h: Likewise.
* bt-load.c: Likewise.
* builtins.c: Likewise.
* caller-save.c: Likewise.
* cfganal.c: Likewise.
* cfgrtl.c: Likewise.
* collect2.c: Likewise.
* cse.c: Likewise.
* df.c: Likewise.
* diagnostic.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* expmed.c: Likewise.
* final.c: Likewise.
* flags.h: Likewise.
* fold-const.c: Likewise.
* gcc.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* genattrtab.c: Likewise.
* genautomata.c: Likewise.
* libgcov.c: Likewise.
* mips-tfile.c: Likewise.
* optabs.c: Likewise.
* prefix.c: Likewise.
* rtlanal.c: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* toplev.c: Likewise.
* varasm.c: Likewise.
* vmsdbgout.c: Likewise.
From-SVN: r68672
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r-- | gcc/gcov.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gcov.c b/gcc/gcov.c index 60930da32eb..9288ca570f9 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -652,7 +652,7 @@ create_file_names (file_name) if (base) { - /* Append source file name */ + /* Append source file name. */ cptr = strrchr (file_name, '/'); strcat (name, cptr ? cptr + 1 : file_name); } @@ -943,7 +943,7 @@ read_graph_file () fn_n = fn->next; fn->next = fn_p; - /* Reverse the arcs */ + /* Reverse the arcs. */ for (ix = fn->num_blocks; ix--;) { arc_t *arc, *arc_p, *arc_n; @@ -1623,7 +1623,7 @@ accumulate_line_counts (src) block_t *block, *block_p, *block_n; gcov_type count = 0; - /* Reverse the block information */ + /* Reverse the block information. */ for (block = line->u.blocks, block_p = NULL; block; block_p = block, block = block_n) { |