diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-03-08 01:38:27 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-03-08 01:38:27 +0000 |
commit | 3dc575ffdbbf9f76f2f8458ccb351efd5d67a96b (patch) | |
tree | ac6eaf9720b1013a5b3dc4f6abec3d7ed67daa1c /gcc/loop.c | |
parent | 89d11511b0e8ce513e042c75131f6e15529ddf24 (diff) | |
download | gcc-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.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 (); |