Commit 87b483a1 by Kazu Hirata Committed by Kazu Hirata

frv-protos.h: Fix comment formatting.

	* config/frv/frv-protos.h: Fix comment formatting.
	* config/frv/frv.c: Likewise.
	* config/frv/frv.h: Likewise.
	* config/frv/frv.md: Likewise.
	* config/frv/frvbegin.c: Likewise.
	* config/frv/frvend.c: Likewise.

From-SVN: r75984
parent 1b6bfcd2
2004-01-16 Kazu Hirata <kazu@cs.umass.edu> 2004-01-16 Kazu Hirata <kazu@cs.umass.edu>
* config/frv/frv-protos.h: Fix comment formatting.
* config/frv/frv.c: Likewise.
* config/frv/frv.h: Likewise.
* config/frv/frv.md: Likewise.
* config/frv/frvbegin.c: Likewise.
* config/frv/frvend.c: Likewise.
2004-01-16 Kazu Hirata <kazu@cs.umass.edu>
* system.h (LINKER_DOES_NOT_WORK_WITH_DWARF2): Poison. * system.h (LINKER_DOES_NOT_WORK_WITH_DWARF2): Poison.
* doc/tm.texi (PREFERRED_DEBUGGING_TYPE): Don't mention * doc/tm.texi (PREFERRED_DEBUGGING_TYPE): Don't mention
LINKER_DOES_NOT_WORK_WITH_DWARF2. LINKER_DOES_NOT_WORK_WITH_DWARF2.
......
...@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA. */
stored from the compare operation. Note that we can't use "rtx" here stored from the compare operation. Note that we can't use "rtx" here
since it hasn't been defined! */ since it hasn't been defined! */
/* Define global data defined in frv.c */ /* Define global data defined in frv.c. */
extern const char *frv_branch_cost_string; /* -mbranch-cost option */ extern const char *frv_branch_cost_string; /* -mbranch-cost option */
extern int frv_branch_cost_int; /* value of -mbranch_cost */ extern int frv_branch_cost_int; /* value of -mbranch_cost */
......
...@@ -538,7 +538,7 @@ extern int target_flags; ...@@ -538,7 +538,7 @@ extern int target_flags;
/* Define this macro if debugging can be performed even without a frame /* Define this macro if debugging can be performed even without a frame
pointer. If this macro is defined, GCC will turn on the pointer. If this macro is defined, GCC will turn on the
`-fomit-frame-pointer' option whenever `-O' is specified. */ `-fomit-frame-pointer' option whenever `-O' is specified. */
/* Frv needs a specific frame layout that includes the frame pointer */ /* Frv needs a specific frame layout that includes the frame pointer. */
#define CAN_DEBUG_WITHOUT_FP #define CAN_DEBUG_WITHOUT_FP
...@@ -2423,7 +2423,7 @@ __asm__("\n" \ ...@@ -2423,7 +2423,7 @@ __asm__("\n" \
#define REVERSIBLE_CC_MODE(MODE) ((MODE) != CCFPEmode) */ #define REVERSIBLE_CC_MODE(MODE) ((MODE) != CCFPEmode) */
/* On frv, don't consider floating point comparisons to be reversible. In /* On frv, don't consider floating point comparisons to be reversible. In
theory, fp equality comparisons can be reversible */ theory, fp equality comparisons can be reversible. */
#define REVERSIBLE_CC_MODE(MODE) ((MODE) == CCmode || (MODE) == CC_UNSmode) #define REVERSIBLE_CC_MODE(MODE) ((MODE) == CCmode || (MODE) == CC_UNSmode)
/* Frv CCR_MODE's are not reversible. */ /* Frv CCR_MODE's are not reversible. */
......
...@@ -5470,7 +5470,7 @@ ...@@ -5470,7 +5470,7 @@
if (GET_CODE (operands[2]) != CONST_INT) if (GET_CODE (operands[2]) != CONST_INT)
abort (); abort ();
/* If we can't generate an immediate instruction, promote to register */ /* If we can't generate an immediate instruction, promote to register. */
if (! IN_RANGE_P (INTVAL (range), -2048, 2047)) if (! IN_RANGE_P (INTVAL (range), -2048, 2047))
range = force_reg (SImode, range); range = force_reg (SImode, range);
...@@ -5496,11 +5496,11 @@ ...@@ -5496,11 +5496,11 @@
emit_cmp_and_jump_insns (indx, range, GTU, NULL_RTX, SImode, 1, fail); emit_cmp_and_jump_insns (indx, range, GTU, NULL_RTX, SImode, 1, fail);
/* Move the table address to a register */ /* Move the table address to a register. */
treg = gen_reg_rtx (Pmode); treg = gen_reg_rtx (Pmode);
emit_insn (gen_movsi (treg, gen_rtx_LABEL_REF (VOIDmode, table))); emit_insn (gen_movsi (treg, gen_rtx_LABEL_REF (VOIDmode, table)));
/* scale index-low by wordsize */ /* Scale index-low by wordsize. */
scale = gen_reg_rtx (SImode); scale = gen_reg_rtx (SImode);
emit_insn (gen_ashlsi3 (scale, indx, GEN_INT (2))); emit_insn (gen_ashlsi3 (scale, indx, GEN_INT (2)));
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
Boston, MA 02111-1307, USA. Boston, MA 02111-1307, USA.
This file was originally taken from the file crtstuff.c in the This file was originally taken from the file crtstuff.c in the
main compiler directory, and simplified. */ main compiler directory, and simplified. */
/* As a special exception, if you link this library with other files, /* As a special exception, if you link this library with other files,
some of which are compiled with GCC, to produce an executable, some of which are compiled with GCC, to produce an executable,
...@@ -81,7 +81,7 @@ extern void __frv_deregister_eh(void) __attribute__((__destructor__)); ...@@ -81,7 +81,7 @@ extern void __frv_deregister_eh(void) __attribute__((__destructor__));
extern func_ptr __EH_FRAME_BEGIN__[]; extern func_ptr __EH_FRAME_BEGIN__[];
/* Register the exception handling table as the first constructor */ /* Register the exception handling table as the first constructor. */
void void
__frv_register_eh (void) __frv_register_eh (void)
{ {
...@@ -93,7 +93,7 @@ __frv_register_eh (void) ...@@ -93,7 +93,7 @@ __frv_register_eh (void)
/* Note, do not declare __{,de}register_frame_info weak as it seems /* Note, do not declare __{,de}register_frame_info weak as it seems
to interfere with the pic support. */ to interfere with the pic support. */
/* Unregister the exception handling table as a deconstructor */ /* Unregister the exception handling table as a deconstructor. */
void void
__frv_deregister_eh (void) __frv_deregister_eh (void)
{ {
...@@ -108,7 +108,7 @@ __frv_deregister_eh (void) ...@@ -108,7 +108,7 @@ __frv_deregister_eh (void)
completed = 1; completed = 1;
} }
/* Run the global destructors */ /* Run the global destructors. */
void void
__do_global_dtors (void) __do_global_dtors (void)
{ {
...@@ -120,7 +120,7 @@ __do_global_dtors (void) ...@@ -120,7 +120,7 @@ __do_global_dtors (void)
} }
} }
/* Run the global constructors */ /* Run the global constructors. */
void void
__do_global_ctors (void) __do_global_ctors (void)
{ {
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING. If not, write to along with GCC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330, the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
/* As a special exception, if you link this library with other files, /* As a special exception, if you link this library with other files,
some of which are compiled with GCC, to produce an executable, some of which are compiled with GCC, to produce an executable,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment