diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-27 07:09:43 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-27 07:09:43 +0000 |
commit | a1105617991df6ea134ea207e4bcdb2b05e6e540 (patch) | |
tree | f41f4b240dc12ae9461209e19a5a72a2a6dc5e0d /gcc/dwarf2out.c | |
parent | 40fcf31b2f6ddd6c3b604620446e6447b8942745 (diff) | |
download | gcc-a1105617991df6ea134ea207e4bcdb2b05e6e540.zip gcc-a1105617991df6ea134ea207e4bcdb2b05e6e540.tar.gz gcc-a1105617991df6ea134ea207e4bcdb2b05e6e540.tar.bz2 |
c-decl.c, [...]: Fix comment typos and formatting.
* c-decl.c, c-ppoutput.c, combine.c, cppfiles.c, dwarf2out.c,
expr.c, fold-const.c, gcc.c, haifa-sched.c, loop-iv.c,
params.def, read-rtl.c, rtl.c, rtlanal.c, toplev.c: Fix
comment typos and formatting. Follow spelling conventions.
From-SVN: r78555
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 0bfe62c..841827b 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -9873,7 +9873,7 @@ add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree b || (bound_attr == DW_AT_lower_bound && (((is_c_family () || is_java ()) && integer_zerop (bound)) || (is_fortran () && integer_onep (bound))))) - /* use the default */ + /* Use the default. */ ; else add_AT_unsigned (subrange_die, bound_attr, tree_low_cst (bound, 0)); @@ -12882,7 +12882,7 @@ dwarf2out_source_line (unsigned int line, const char *filename) (*targetm.asm_out.internal_label) (asm_out_file, SEPARATE_LINE_CODE_LABEL, separate_line_info_table_in_use); - /* expand the line info table if necessary */ + /* Expand the line info table if necessary. */ if (separate_line_info_table_in_use == separate_line_info_table_allocated) { |