From 2358393e3a0db63122498ce79a712bc28fa95f9e Mon Sep 17 00:00:00 2001 From: kazu Date: Sun, 29 Jun 2003 13:53:12 +0000 Subject: * 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 --- gcc/vmsdbgout.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'gcc/vmsdbgout.c') diff --git a/gcc/vmsdbgout.c b/gcc/vmsdbgout.c index e2d523ce042..83b7d17fe21 100644 --- a/gcc/vmsdbgout.c +++ b/gcc/vmsdbgout.c @@ -837,7 +837,7 @@ write_rtnbeg (rtnnum, dosizeonly) totsize += write_debug_string ((char *) go, "main name", dosizeonly); } - /* The header length never includes the length byte */ + /* The header length never includes the length byte. */ rtnbeg.dst_a_rtnbeg_header.dst__header_length.dst_w_length = DST_K_RTNBEG_SIZE + rtnnamelen - 1; rtnbeg.dst_a_rtnbeg_header.dst__header_type.dst_w_type = DST_K_RTNBEG; @@ -959,7 +959,7 @@ write_pclines (dosizeonly) linestart = linestart + ((max_line / 10000) + 1) * 10000; } - /* Set starting address to beginning of text section */ + /* Set starting address to beginning of text section. */ line_num.dst_a_line_num_header.dst__header_length.dst_w_length = 8; line_num.dst_a_line_num_header.dst__header_type.dst_w_type = DST_K_LINE_NUM; pcline.dst_b_pcline_command = DST_K_SET_ABS_PC; @@ -1311,7 +1311,7 @@ vmsdbgout_end_prologue (line, file) current_function_funcdef_no); ASM_OUTPUT_LABEL (asm_out_file, label); - /* VMS PCA expects every PC range to correlate to some line and file */ + /* VMS PCA expects every PC range to correlate to some line and file. */ vmsdbgout_source_line (line, file); } } @@ -1348,7 +1348,7 @@ vmsdbgout_end_epilogue (line, file) current_function_funcdef_no); ASM_OUTPUT_LABEL (asm_out_file, label); - /* VMS PCA expects every PC range to correlate to some line and file */ + /* VMS PCA expects every PC range to correlate to some line and file. */ vmsdbgout_source_line (line, file); } } @@ -1477,17 +1477,17 @@ lookup_filename (file_name) #ifdef VMS struct tm *ts; - /* Adjust for GMT */ + /* Adjust for GMT. */ ts = (struct tm *) localtime (&statbuf.st_ctime); gmtoff = ts->tm_gmtoff; - /* VMS has multiple file format types */ + /* VMS has multiple file format types. */ rfo = statbuf.st_fab_rfm; #else /* Is GMT adjustment an issue with a cross-compiler? */ gmtoff = 0; - /* Assume stream LF type file */ + /* Assume stream LF type file. */ rfo = 2; #endif cdt = 10000000 * (statbuf.st_ctime + gmtoff + vms_epoch_offset); -- cgit v1.2.1