diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-25 14:36:40 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-25 14:36:40 +0000 |
commit | ea4b78487cb4fa983c3bfa1f921c3b04f2fded93 (patch) | |
tree | 5867ad91eef65934da4de107a8e9e80facc6cfd6 /gcc/dwarf2out.c | |
parent | e75220c8ced33002009c5c9aa43a6db9015c9f50 (diff) | |
download | gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.zip gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.tar.gz gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.tar.bz2 |
c-typeck.c, [...]: Fix comment formatting.
* c-typeck.c, defaults.h, dwarf.h, dwarf2out.c, fold-const.c,
gthr-dce.h, gthr-posix.h, gthr-solaris.h, gthr-win32.h,
lambda-code.c, lambda-mat.c, libgcc2.c, stmt.c,
tree-ssa-pre.c, tree-vn.c, tree.h: Fix comment formatting.
From-SVN: r88102
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 3c47864..8ec62fe 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -12926,7 +12926,7 @@ lookup_filename (const char *file_name) return file_table_last_lookup_index; } - /* Didn't match the previous lookup, search the table */ + /* Didn't match the previous lookup, search the table. */ n = VARRAY_ACTIVE_SIZE (file_table); for (i = 1; i < n; i++) if (strcmp (file_name, VARRAY_CHAR_PTR (file_table, i)) == 0) @@ -13219,7 +13219,7 @@ dwarf2out_init (const char *filename ATTRIBUTE_UNUSED) abbrev_die_table = ggc_alloc_cleared (ABBREV_DIE_TABLE_INCREMENT * sizeof (dw_die_ref)); abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT; - /* Zero-th entry is allocated, but unused */ + /* Zero-th entry is allocated, but unused. */ abbrev_die_table_in_use = 1; /* Allocate the initial hunk of the line_info_table. */ @@ -13227,7 +13227,7 @@ dwarf2out_init (const char *filename ATTRIBUTE_UNUSED) * sizeof (dw_line_info_entry)); line_info_table_allocated = LINE_INFO_TABLE_INCREMENT; - /* Zero-th entry is allocated, but unused */ + /* Zero-th entry is allocated, but unused. */ line_info_table_in_use = 1; /* Generate the initial DIE for the .debug section. Note that the (string) |