diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-29 13:53:12 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-29 13:53:12 +0000 |
commit | 2358393e3a0db63122498ce79a712bc28fa95f9e (patch) | |
tree | 096f08da7ff43d0c89a0ae297b1089589ba63a46 /gcc/collect2.c | |
parent | 20e1fca5df143843d93d8da5fbe838568eca91ed (diff) | |
download | gcc-2358393e3a0db63122498ce79a712bc28fa95f9e.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68672 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/collect2.c')
-rw-r--r-- | gcc/collect2.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/collect2.c b/gcc/collect2.c index 85d2843237c..32eb5be958a 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -702,7 +702,7 @@ add_prefix (struct path_prefix *pprefix, const char *prefix) else prev = &pprefix->plist; - /* Keep track of the longest prefix */ + /* Keep track of the longest prefix. */ len = strlen (prefix); if (len > pprefix->max_len) @@ -1350,7 +1350,7 @@ main (int argc, char **argv) ) { #ifdef COLLECT_EXPORT_LIST - /* Do tlink without additional code generation */ + /* Do tlink without additional code generation. */ do_tlink (ld1_argv, object_lst); #endif /* Strip now if it was requested on the command line. */ @@ -1816,7 +1816,7 @@ write_c_file_stat (FILE *stream, const char *name ATTRIBUTE_UNUSED) free (prefix); - /* Write the tables as C code */ + /* Write the tables as C code. */ fprintf (stream, "static int count;\n"); fprintf (stream, "typedef void entry_pt();\n"); @@ -1899,7 +1899,7 @@ write_c_file_stat (FILE *stream, const char *name ATTRIBUTE_UNUSED) static void write_c_file_glob (FILE *stream, const char *name ATTRIBUTE_UNUSED) { - /* Write the tables as C code */ + /* Write the tables as C code. */ int frames = (frame_tables.number > 0); @@ -2043,7 +2043,7 @@ scan_prog_file (const char *prog_name, enum pass which_pass) fflush (stdout); fflush (stderr); - /* Spawn child nm on pipe */ + /* Spawn child nm on pipe. */ pid = vfork (); if (pid == -1) fatal_perror (VFORK_STRING); @@ -2472,7 +2472,7 @@ scan_libraries (const char *prog_name) fflush (stdout); fflush (stderr); - /* Spawn child ldd on pipe */ + /* Spawn child ldd on pipe. */ pid = vfork (); if (pid == -1) fatal_perror (VFORK_STRING); @@ -3158,7 +3158,7 @@ scan_prog_file (const char *prog_name, enum pass which_pass) if (debug) print_header (&hdr); - /* Write header */ + /* Write header. */ status = encode_mach_o_hdr (&hdr, obj, MO_SIZEOF_RAW_HDR); if (status != MO_HDR_CONV_SUCCESS) bad_header (status); @@ -3166,7 +3166,7 @@ scan_prog_file (const char *prog_name, enum pass which_pass) if (debug) notice ("writing load commands.\n\n"); - /* Write load commands */ + /* Write load commands. */ offset = hdr.moh_first_cmd_off; for (i = 0; i < hdr.moh_n_load_cmds; i++) { |