aboutsummaryrefslogtreecommitdiff
path: root/gcc/loop.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-03-08 01:38:27 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-03-08 01:38:27 +0000
commit3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b (patch)
treeac6eaf9720b1013a5b3dc4f6abec3d7ed67daa1c /gcc/loop.c
parent89d11511b0e8ce513e042c75131f6e15529ddf24 (diff)
downloadgcc-3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b.zip
gcc-3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b.tar.gz
gcc-3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b.tar.bz2
calls.c: Fix comment formatting.
* 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. From-SVN: r63966
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 222d492..7a8185d 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 ();