summaryrefslogtreecommitdiffstats
path: root/gcc/loop.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2003-03-08 01:38:27 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2003-03-08 01:38:27 +0000
commit037845e55755f9d46e07be6df6f59eeeb305206b (patch)
treeac6eaf9720b1013a5b3dc4f6abec3d7ed67daa1c /gcc/loop.c
parent6604994e4331f38664f163ff4b71379658e0bdc5 (diff)
downloadppe42-gcc-037845e55755f9d46e07be6df6f59eeeb305206b.tar.gz
ppe42-gcc-037845e55755f9d46e07be6df6f59eeeb305206b.zip
* calls.c: Fix comment formatting.
* cfgloopanal.c: Likewise. * cfgloopmanip.c: Likewise. * combine.c: Likewise. * dwarf2out.c: Likewise. * ggc-common.c: Likewise. * langhooks.c: Likewise. * loop-unroll.c: Likewise. * loop.c: Likewise. * ra-build.c: Likewise. * sbitmap.c: Likewise. * toplev.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63966 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r--gcc/loop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/loop.c b/gcc/loop.c
index 222d492b63f..7a8185d4bad 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -225,7 +225,7 @@ struct movable
unsigned int is_equiv : 1; /* 1 means a REG_EQUIV is present on INSN. */
unsigned int insert_temp : 1; /* 1 means we copy to a new pseudo and replace
the original insn with a copy from that
- pseudo, rather than deleting it. */
+ pseudo, rather than deleting it. */
struct movable *match; /* First entry for same value */
struct movable *forces; /* An insn that must be moved if this is */
struct movable *next;
@@ -846,7 +846,7 @@ scan_loop (loop, flags)
;
/* Don't move the source and add a reg-to-reg copy with -Os
(this certainly increases size) or if the source is
- already a reg (the motion will gain nothing). */
+ already a reg (the motion will gain nothing). */
else if (insert_temp
&& (optimize_size || GET_CODE (SET_SRC (set)) == REG
|| (CONSTANT_P (SET_SRC (set))
@@ -1977,7 +1977,7 @@ move_movables (loop, movables, threshold, insn_count)
if (m->insert_temp)
{
/* Replace the original insn with a move from
- our newly created temp. */
+ our newly created temp. */
start_sequence ();
emit_move_insn (m->set_dest, newreg);
seq = get_insns ();
@@ -2221,7 +2221,7 @@ move_movables (loop, movables, threshold, insn_count)
{
rtx seq;
/* Replace the original insn with a move from
- our newly created temp. */
+ our newly created temp. */
start_sequence ();
emit_move_insn (m->set_dest, newreg);
seq = get_insns ();
OpenPOWER on IntegriCloud