acconfig.h: Fix comment formatting.

* acconfig.h: Fix comment formatting.
	* c-dump.h: Likewise.
	* c-tree.h: Likewise.
	* conditions.h: Likewise.
	* expr.h: Likewise.
	* function.h: Likewise.
	* gthr.h: Likewise.
	* hwint.h: Likewise.
	* integrate.h: Likewise.
	* intl.h: Likewise.
	* loop.h: Likewise.
	* optabs.h: Likewise.

From-SVN: r46131
This commit is contained in:
Kazu Hirata 2001-10-09 22:40:12 +00:00 committed by Kazu Hirata
parent 60741f92b6
commit 19eb1ad779
13 changed files with 37 additions and 22 deletions

View file

@ -1,3 +1,18 @@
2001-10-09 Kazu Hirata <kazu@hxi.com>
* acconfig.h: Fix comment formatting.
* c-dump.h: Likewise.
* c-tree.h: Likewise.
* conditions.h: Likewise.
* expr.h: Likewise.
* function.h: Likewise.
* gthr.h: Likewise.
* hwint.h: Likewise.
* integrate.h: Likewise.
* intl.h: Likewise.
* loop.h: Likewise.
* optabs.h: Likewise.
2001-10-09 Kazu Hirata <kazu@hxi.com>
* c-common.h: Fix comment formatting.

View file

@ -14,7 +14,7 @@
#undef HAVE_STPCPY
/* Define if your assembler supports specifying the maximum number
of bytes to skip when using the GAS .p2align command. */
of bytes to skip when using the GAS .p2align command. */
#undef HAVE_GAS_MAX_SKIP_P2ALIGN
/* Define if your assembler supports .balign and .p2align. */
@ -26,7 +26,7 @@
/* Define to `int' if <sys/types.h> doesn't define. */
#undef ssize_t
/* Define if cpp should also search $prefix/include. */
/* Define if cpp should also search $prefix/include. */
#undef PREFIX_INCLUDE_DIR
@BOTTOM@

View file

@ -53,9 +53,9 @@ struct dump_info
{
/* The stream on which to dump the information. */
FILE *stream;
/* The original node. */
/* The original node. */
tree node;
/* User flags. */
/* User flags. */
int flags;
/* The next unused node index. */
unsigned int index;

View file

@ -325,12 +325,12 @@ extern int warn_traditional;
extern int warn_char_subscripts;
/* Warn if main is suspicious. */
/* Warn if main is suspicious. */
extern int warn_main;
/* Nonzero means to allow single precision math even if we're generally
being traditional. */
being traditional. */
extern int flag_allow_single_precision;
/* Warn if initializer is not completely bracketed. */
@ -341,7 +341,7 @@ extern int warn_missing_braces;
extern int warn_sign_compare;
/* Warn about testing equality of floating point numbers. */
/* Warn about testing equality of floating point numbers. */
extern int warn_float_equal;

View file

@ -105,7 +105,7 @@ extern CC_STATUS cc_status;
#define CC_INVERTED 0100
/* Nonzero if we must convert signed condition operators to unsigned.
This is only used by machine description files. */
This is only used by machine description files. */
#define CC_NOT_SIGNED 0200
/* This is how to initialize the variable cc_status.

View file

@ -284,7 +284,7 @@ extern rtx expand_simple_unop PARAMS ((enum machine_mode, enum rtx_code,
perform the operation described by CODE and MODE. */
extern int have_insn_for PARAMS ((enum rtx_code, enum machine_mode));
/* Emit code to make a call to a constant function or a library call. */
/* Emit code to make a call to a constant function or a library call. */
extern void emit_libcall_block PARAMS ((rtx, rtx, rtx, rtx));
/* Create but don't emit one rtl instruction to perform certain operations.
@ -429,7 +429,7 @@ extern void emit_group_load PARAMS ((rtx, rtx, int, unsigned int));
extern void emit_group_store PARAMS ((rtx, rtx, int, unsigned int));
#ifdef TREE_CODE
/* Copy BLKmode object from a set of registers. */
/* Copy BLKmode object from a set of registers. */
extern rtx copy_blkmode_from_reg PARAMS ((rtx,rtx,tree));
#endif
@ -483,7 +483,7 @@ extern void emit_push_insn PARAMS ((rtx, enum machine_mode, tree, rtx,
unsigned int, int, rtx, int, rtx, rtx,
int, rtx));
/* Expand an assignment that stores the value of FROM into TO. */
/* Expand an assignment that stores the value of FROM into TO. */
extern rtx expand_assignment PARAMS ((tree, tree, int, int));
/* Generate code for computing expression EXP,

View file

@ -189,7 +189,7 @@ struct function
/* Name of this function. */
const char *name;
/* Points to the FUNCTION_DECL of this function. */
/* Points to the FUNCTION_DECL of this function. */
tree decl;
/* Function containing this function, if any. */
@ -236,7 +236,7 @@ struct function
const char *cannot_inline;
/* Opaque pointer used by get_hard_reg_initial_val and
has_hard_reg_initial_val (see integrate.[hc]). */
has_hard_reg_initial_val (see integrate.[hc]). */
struct initial_value_struct *hard_reg_initial_vals;
/* Number of function calls seen so far in current function. */
@ -329,7 +329,7 @@ struct function
rtx x_last_parm_insn;
/* 1 + last pseudo register number possibly used for loading a copy
of a parameter of this function. */
of a parameter of this function. */
unsigned int x_max_parm_reg;
/* Vector indexed by REGNO, containing location on stack in which

View file

@ -80,7 +80,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
Solaris/UI threads with -D_SOLARIS_THREADS
*/
/* Check first for thread specific defines. */
/* Check first for thread specific defines. */
#if _PTHREADS
#include "gthr-posix.h"
#elif _DCE_THREADS
@ -88,7 +88,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#elif _SOLARIS_THREADS
#include "gthr-solaris.h"
/* Include GTHREAD_FILE if one is defined. */
/* Include GTHREAD_FILE if one is defined. */
#elif defined(HAVE_GTHR_DEFAULT)
#if SUPPORTS_WEAK
#ifndef GTHREAD_USE_WEAK
@ -97,7 +97,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#endif
#include "gthr-default.h"
/* Fallback to single thread definitions. */
/* Fallback to single thread definitions. */
#else
#include "gthr-single.h"
#endif

View file

@ -4,7 +4,7 @@
This file is part of GCC.
Provide definitions for macros which depend on HOST_BITS_PER_INT
and HOST_BITS_PER_LONG. */
and HOST_BITS_PER_LONG. */
#ifndef GCC_HWINT_H
#define GCC_HWINT_H

View file

@ -36,7 +36,7 @@ struct inline_remap
{
/* True if we are doing function integration, false otherwise.
Used to control whether RTX_UNCHANGING bits are copied by
copy_rtx_and_substitute. */
copy_rtx_and_substitute. */
int integrating;
/* Definition of function be inlined. */
union tree_node *fndecl;

View file

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
02111-1307, USA. */
#ifdef HAVE_LOCALE_H
# include <locale.h>

View file

@ -184,7 +184,7 @@ struct iv_class
unsigned reversed : 1; /* 1 if we reversed the loop that this
biv controls. */
unsigned all_reduced : 1; /* 1 if all givs using this biv have
been reduced. */
been reduced. */
};

View file

@ -212,7 +212,7 @@ extern optab optab_table[OTI_MAX];
/* Tables of patterns for extending one integer mode to another. */
extern enum insn_code extendtab[MAX_MACHINE_MODE][MAX_MACHINE_MODE][2];
/* Tables of patterns for converting between fixed and floating point. */
/* Tables of patterns for converting between fixed and floating point. */
extern enum insn_code fixtab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2];
extern enum insn_code fixtrunctab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2];
extern enum insn_code floattab[NUM_MACHINE_MODES][NUM_MACHINE_MODES][2];