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/dwarf2out.c | |
parent | 329d586fe57ac58fb541855cf8e329b9f5cb5cff (diff) | |
download | gcc-f9da50645221cfa880519542a1c5e37c53837bef.zip gcc-f9da50645221cfa880519542a1c5e37c53837bef.tar.gz gcc-f9da50645221cfa880519542a1c5e37c53837bef.tar.bz2 |
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/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 4ae09b1..7c8f04c 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -6694,7 +6694,7 @@ new_loc_list (expr, begin, end, section, gensym) return retlist; } -/* Add a location description expression to a location list */ +/* Add a location description expression to a location list. */ static inline void add_loc_descr_to_loc_list (list_head, descr, begin, end, section) @@ -6710,11 +6710,11 @@ add_loc_descr_to_loc_list (list_head, descr, begin, end, section) for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next) ; - /* Add a new location list node to the list */ + /* Add a new location list node to the list. */ *d = new_loc_list (descr, begin, end, section, 0); } -/* Output the location list given to us */ +/* Output the location list given to us. */ static void output_loc_list (list_head) @@ -7764,7 +7764,7 @@ output_line_info () { function = line_info->function; - /* Set the address register to the first line in the function */ + /* Set the address register to the first line in the function. */ dw2_asm_output_data (1, 0, "DW_LNE_set_address"); dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL); dw2_asm_output_data (1, DW_LNE_set_address, NULL); @@ -11120,7 +11120,7 @@ gen_subprogram_die (decl, context_die) gen_formal_types_die (decl, subr_die); else { - /* Generate DIEs to represent all known formal parameters */ + /* Generate DIEs to represent all known formal parameters. */ tree arg_decls = DECL_ARGUMENTS (decl); tree parm; @@ -11752,7 +11752,7 @@ gen_subroutine_type_die (type, context_die) gen_formal_types_die (type, subr_die); } -/* Generate a DIE for a type definition */ +/* Generate a DIE for a type definition. */ static void gen_typedef_die (decl, context_die) |