aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarfout.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-08-22 06:45:14 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-08-22 06:45:14 +0000
commitbeb235f8964321e02e492c9b6856a1ca56f2e027 (patch)
treeb240bf213337fa404942e0e2bdbb6534d89eb5e0 /gcc/dwarfout.c
parent2b72593e40e7c04cf3fe7cdb35878c307825b3a9 (diff)
downloadgcc-beb235f8964321e02e492c9b6856a1ca56f2e027.zip
gcc-beb235f8964321e02e492c9b6856a1ca56f2e027.tar.gz
gcc-beb235f8964321e02e492c9b6856a1ca56f2e027.tar.bz2
c-decl.c: Fix comment formatting.
* c-decl.c: Fix comment formatting. * cfgrtl.c: Likewise. * combine.c: Likewise. * convert.c: Likewise. * dominance.c: Likewise. * dwarf2out.c: Likewise. * dwarfout.c: Likewise. * expmed.c: Likewise. * fold-const.c: Likewise. * gcov.c: Likewise. * genattrtab.c: Likewise. * ggc-common.c: Likewise. * mips-tfile.c: Likewise. * regmove.c: Likewise. From-SVN: r70677
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r--gcc/dwarfout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c
index 43ab37b..166addb 100644
--- a/gcc/dwarfout.c
+++ b/gcc/dwarfout.c
@@ -4066,7 +4066,7 @@ output_string_type_die (void *arg)
sibling_attribute ();
equate_type_number_to_die_number (type);
member_attribute (TYPE_CONTEXT (type));
- /* this is a fixed length string */
+ /* This is a fixed length string. */
byte_size_attribute (type);
}
@@ -5226,13 +5226,13 @@ output_decl (tree decl, tree containing_scope)
if (fn_arg_types)
{
- /* this is the prototyped case, check for ... */
+ /* This is the prototyped case, check for.... */
if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
output_die (output_unspecified_parameters_die, decl);
}
else
{
- /* this is unprototyped, check for undefined (just declaration) */
+ /* This is unprototyped, check for undefined (just declaration). */
if (!DECL_INITIAL (decl))
output_die (output_unspecified_parameters_die, decl);
}