diff options
author | Graham Stott <grahams@redhat.com> | 2002-01-08 09:57:48 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2002-01-08 09:57:48 +0000 |
commit | 5bc5a8f9b7f14fdaf530000984a8eb30a0804b32 (patch) | |
tree | c0c504c4d0522ade28ba78f2a3a8ac83125a3de9 /gcc/combine.c | |
parent | 16ec4ebf00e10e2fd2bc2879e9ede682883951f2 (diff) | |
download | gcc-5bc5a8f9b7f14fdaf530000984a8eb30a0804b32.zip gcc-5bc5a8f9b7f14fdaf530000984a8eb30a0804b32.tar.gz gcc-5bc5a8f9b7f14fdaf530000984a8eb30a0804b32.tar.bz2 |
* combine.c (combine_instructions): Fix typo.
From-SVN: r48630
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 64e1069..d640bc4 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -624,7 +624,7 @@ combine_instructions (f, nregs) /* If the linked insn has been replaced by a note, then there is no point in pursuing this chain any further. */ if (GET_CODE (link) == NOTE) - break; + continue; for (nextlinks = LOG_LINKS (link); nextlinks; |