diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-12-28 18:17:54 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-12-28 18:17:54 +0000 |
commit | 23d1aac4b58459f98f188344314fee09da6cecde (patch) | |
tree | 05a889a6042079b20e46951152a0ee63b983eef5 | |
parent | 20c907b05dbd501bb1b1b2b6c753665e256b9cb2 (diff) | |
download | gcc-23d1aac4b58459f98f188344314fee09da6cecde.zip gcc-23d1aac4b58459f98f188344314fee09da6cecde.tar.gz gcc-23d1aac4b58459f98f188344314fee09da6cecde.tar.bz2 |
except.c: Fix comment formatting.
* except.c: Fix comment formatting.
* flags.h: Likewise.
* flow.c: Likewise.
* predict.c: Likewise.
* simplify-rtx.c: Likewise.
* system.h: Likewise.
* vmsdbg.h: Likewise.
* vmsdbgout.c: Likewise.
From-SVN: r48349
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/except.c | 2 | ||||
-rw-r--r-- | gcc/flags.h | 4 | ||||
-rw-r--r-- | gcc/flow.c | 2 | ||||
-rw-r--r-- | gcc/predict.c | 2 | ||||
-rw-r--r-- | gcc/simplify-rtx.c | 2 | ||||
-rw-r--r-- | gcc/system.h | 2 | ||||
-rw-r--r-- | gcc/vmsdbg.h | 10 | ||||
-rw-r--r-- | gcc/vmsdbgout.c | 34 |
9 files changed, 40 insertions, 29 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b9dfd9b..70fb073 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,16 @@ 2001-12-28 Kazu Hirata <kazu@hxi.com> + * except.c: Fix comment formatting. + * flags.h: Likewise. + * flow.c: Likewise. + * predict.c: Likewise. + * simplify-rtx.c: Likewise. + * system.h: Likewise. + * vmsdbg.h: Likewise. + * vmsdbgout.c: Likewise. + +2001-12-28 Kazu Hirata <kazu@hxi.com> + * config/h8300/h8300.md: Fix formatting. 2001-12-28 Geoff Keating <geoffk@redhat.com> diff --git a/gcc/except.c b/gcc/except.c index c3958f9..f575078 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -776,7 +776,7 @@ expand_start_all_catch () /* Begin a catch clause. TYPE is the type caught, a list of such types, or null if this is a catch-all clause. Providing a type list enables to associate the catch region with potentially several exception types, which - is useful e.g. for Ada. */ + is useful e.g. for Ada. */ void expand_start_catch (type_or_list) diff --git a/gcc/flags.h b/gcc/flags.h index 304736f..49fdaa0 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -33,9 +33,9 @@ enum debug_info_type DWARF_DEBUG, /* Write Dwarf debug info (using dwarfout.c). */ DWARF2_DEBUG, /* Write Dwarf v2 debug info (using dwarf2out.c). */ XCOFF_DEBUG, /* Write IBM/Xcoff debug info (using dbxout.c). */ - VMS_DEBUG, /* Write VMS debug info (using vmsdbgout.c). */ + VMS_DEBUG, /* Write VMS debug info (using vmsdbgout.c). */ VMS_AND_DWARF2_DEBUG /* Write VMS debug info (using vmsdbgout.c). - and DWARF v2 debug info (using dwarf2out.c). */ + and DWARF v2 debug info (using dwarf2out.c). */ }; /* Specify which kind of debugging info to generate. */ @@ -1377,7 +1377,7 @@ initialize_uninitialized_subregs () Its preferable to have an instance of the register's rtl since there may be various flags set which we need to duplicate. If we can't find it, its probably an automatic whose initial - value doesn't matter, or hopefully something we don't care about. */ + value doesn't matter, or hopefully something we don't care about. */ for (i = get_insns (); i && INSN_UID (i) != uid; i = NEXT_INSN (i)) ; if (i != NULL_RTX) diff --git a/gcc/predict.c b/gcc/predict.c index 35a6af2..71da61a 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -386,7 +386,7 @@ estimate_probability (loops_info) /* ??? Postdominator claims each noreturn block to be postdominated by each, so we need to run only once. This needs to be changed once postdominace algorithm is updated to say something more - sane. */ + sane. */ found_noreturn = 1; for (y = 0; y < n_basic_blocks; y++) if (!TEST_BIT (post_dominators[y], i)) diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 2b25d9c..49c205c 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -109,7 +109,7 @@ static void simplify_binary_is2orm1 PARAMS ((PTR)); /* Negate a CONST_INT rtx, truncating (because a conversion from a - maximally negative number can overflow). */ + maximally negative number can overflow). */ static rtx neg_const_int (mode, i) enum machine_mode mode; diff --git a/gcc/system.h b/gcc/system.h index 3f14dde..a527384 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -159,7 +159,7 @@ extern int errno; #ifdef HAVE_SYS_PARAM_H # include <sys/param.h> -/* We use this identifier later and it appears in some vendor param.h's. */ +/* We use this identifier later and it appears in some vendor param.h's. */ # undef PREFETCH #endif diff --git a/gcc/vmsdbg.h b/gcc/vmsdbg.h index 40d6692..8b7fcae 100644 --- a/gcc/vmsdbg.h +++ b/gcc/vmsdbg.h @@ -52,11 +52,11 @@ typedef struct _DST_HEADER } DST_HEADER; #define DST_K_DST_HEADER_SIZE sizeof 4 -/* Language type codes. */ +/* Language type codes. */ typedef enum _DST_LANGUAGE {DST_K_FORTRAN = 1, DST_K_C = 7, DST_K_ADA = 9, DST_K_UNKNOWN = 10, DST_K_CXX = 15} DST_LANGUAGE; -/* Module header (a module is the result of a single compilation). */ +/* Module header (a module is the result of a single compilation). */ typedef struct _DST_MODULE_BEGIN { @@ -93,7 +93,7 @@ typedef struct _DST_MODULE_END } DST_MODULE_END; #define DST_K_MODEND_SIZE sizeof 4 -/* Routine header. */ +/* Routine header. */ typedef struct _DST_ROUTINE_BEGIN { @@ -122,7 +122,7 @@ typedef struct _DST_ROUTINE_END } DST_ROUTINE_END; #define DST_K_RTNEND_SIZE 9 -/* Block header. */ +/* Block header. */ typedef struct _DST_BLOCK_BEGIN { @@ -133,7 +133,7 @@ typedef struct _DST_BLOCK_BEGIN } DST_BLOCK_BEGIN; #define DST_K_BLKBEG_SIZE 10 -/* Block trailer. */ +/* Block trailer. */ typedef struct _DST_BLOCK_END { diff --git a/gcc/vmsdbgout.c b/gcc/vmsdbgout.c index 87c9144..b86719d 100644 --- a/gcc/vmsdbgout.c +++ b/gcc/vmsdbgout.c @@ -86,7 +86,7 @@ dst_file_info_entry; #define PTR_SIZE 4 /* Must be 32 bits for VMS debug info */ #endif -/* Pointer to an structure of filenames referenced by this compilation unit. */ +/* Pointer to an structure of filenames referenced by this compilation unit. */ static dst_file_info_ref file_info_table; /* Total number of entries in the table (i.e. array) pointed to by @@ -524,7 +524,7 @@ restart: /* Output the debug header HEADER. Also output COMMENT if flag_verbose_asm is set. Return the header size. Just return the size if DOSIZEONLY is - non-zero. */ + non-zero. */ static int write_debug_header (header, comment, dosizeonly) @@ -556,7 +556,7 @@ write_debug_header (header, comment, dosizeonly) /* Output the address of SYMBOL. Also output COMMENT if flag_verbose_asm is set. Return the address size. Just return the size if DOSIZEONLY is - non-zero. */ + non-zero. */ static int write_debug_addr (symbol, comment, dosizeonly) @@ -577,7 +577,7 @@ write_debug_addr (symbol, comment, dosizeonly) /* Output the single byte DATA1. Also output COMMENT if flag_verbose_asm is set. Return the data size. Just return the size if DOSIZEONLY is - non-zero. */ + non-zero. */ static int write_debug_data1 (data1, comment, dosizeonly) @@ -598,7 +598,7 @@ write_debug_data1 (data1, comment, dosizeonly) /* Output the single word DATA2. Also output COMMENT if flag_verbose_asm is set. Return the data size. Just return the size if DOSIZEONLY is - non-zero. */ + non-zero. */ static int write_debug_data2 (data2, comment, dosizeonly) @@ -618,7 +618,7 @@ write_debug_data2 (data2, comment, dosizeonly) } /* Output double word DATA4. Also output COMMENT if flag_verbose_asm is set. - Return the data size. Just return the size if DOSIZEONLY is non-zero. */ + Return the data size. Just return the size if DOSIZEONLY is non-zero. */ static int write_debug_data4 (data4, comment, dosizeonly) @@ -659,7 +659,7 @@ write_debug_data8 (data8, comment, dosizeonly) /* Output the difference between LABEL1 and LABEL2. Also output COMMENT if flag_verbose_asm is set. Return the data size. Just return the size if - DOSIZEONLY is non-zero. */ + DOSIZEONLY is non-zero. */ static int write_debug_delta4 (label1, label2, comment, dosizeonly) @@ -681,7 +681,7 @@ write_debug_delta4 (label1, label2, comment, dosizeonly) /* Output a character string STRING. Also write COMMENT if flag_verbose_asm is set. Return the string length. Just return the length if DOSIZEONLY is - non-zero. */ + non-zero. */ static int write_debug_string (string, comment, dosizeonly) @@ -701,7 +701,7 @@ write_debug_string (string, comment, dosizeonly) } /* Output a module begin header and return the header size. Just return the - size if DOSIZEONLY is non-zero. */ + size if DOSIZEONLY is non-zero. */ static int write_modbeg (dosizeonly) @@ -715,7 +715,7 @@ write_modbeg (dosizeonly) int prodnamelen; int totsize = 0; - /* Assumes primary filename has Unix syntax file spec. */ + /* Assumes primary filename has Unix syntax file spec. */ module_name = xstrdup (basename ((char *) primary_filename)); m = strrchr (module_name, '.'); @@ -765,7 +765,7 @@ write_modbeg (dosizeonly) } /* Output a module end trailer and return the trailer size. Just return - the size if DOSIZEONLY is non-zero. */ + the size if DOSIZEONLY is non-zero. */ static int write_modend (dosizeonly) @@ -785,7 +785,7 @@ write_modend (dosizeonly) } /* Output a routine begin header routine RTNNUM and return the header size. - Just return the size if DOSIZEONLY is non-zero. */ + Just return the size if DOSIZEONLY is non-zero. */ static int write_rtnbeg (rtnnum, dosizeonly) @@ -883,7 +883,7 @@ write_rtnbeg (rtnnum, dosizeonly) } /* Output a routine end trailer for routine RTNNUM and return the header size. - Just return the size if DOSIZEONLY is non-zero. */ + Just return the size if DOSIZEONLY is non-zero. */ static int write_rtnend (rtnnum, dosizeonly) @@ -1058,7 +1058,7 @@ write_pclines (dosizeonly) /* Output a source correlation for file FILEID using information saved in FILE_INFO_ENTRY and return the size. Just return the size if DOSIZEONLY is - non-zero. */ + non-zero. */ static int write_srccorr (fileid, file_info_entry, dosizeonly) @@ -1249,7 +1249,7 @@ write_srccorr (fileid, file_info_entry, dosizeonly) } /* Output all the source correlation entries and return the size. Just return - the size if DOSIZEONLY is non-zero. */ + the size if DOSIZEONLY is non-zero. */ static int write_srccorrs (dosizeonly) @@ -1393,7 +1393,7 @@ vmsdbgout_begin_function (decl) static char fullname_buff [4096]; /* Return the full file specification for FILENAME. The specification must be - in VMS syntax in order to be processed by VMS Debug. */ + in VMS syntax in order to be processed by VMS Debug. */ static char * full_name (filename) @@ -1706,7 +1706,7 @@ vmsdbgout_finish (input_filename) /* Output debugging information. Warning! Do not change the name of the .vmsdebug section without - changing it in the assembler also. */ + changing it in the assembler also. */ named_section (NULL_TREE, ".vmsdebug", 0); ASM_OUTPUT_ALIGN (asm_out_file, 0); |