diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-03-25 10:32:36 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-03-25 02:32:36 -0800 |
commit | 8cf619daa1ecd43d122b22621fde7f6271a9cb05 (patch) | |
tree | 40ca8f915605d74cc829e265c5a650b8c967868c /gcc/loop.c | |
parent | b2fbdce5d88d67026186c74fadd2632258388588 (diff) | |
download | gcc-8cf619daa1ecd43d122b22621fde7f6271a9cb05.zip gcc-8cf619daa1ecd43d122b22621fde7f6271a9cb05.tar.gz gcc-8cf619daa1ecd43d122b22621fde7f6271a9cb05.tar.bz2 |
Fix m68k bootstrap failure reported by Toon Moene.
* loop.c (scan_loop): Initialize move_insn_first to zero.
From-SVN: r18821
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -950,6 +950,7 @@ scan_loop (loop_start, end, nregs, unroll_p) m->done = 0; m->forces = 0; m->move_insn = 0; + m->move_insn_first = 0; m->partial = 1; /* If the insn may not be executed on some cycles, we can't clear the whole reg; clear just high part. |