mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-16 02:20:27 +08:00
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
This commit is contained in:
parent
20c907b05d
commit
23d1aac4b5
@ -1,3 +1,14 @@
|
||||
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.
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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))
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
||||
|
10
gcc/vmsdbg.h
10
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
|
||||
{
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user