diff options
| author | grahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-08 09:57:48 +0000 |
|---|---|---|
| committer | grahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-08 09:57:48 +0000 |
| commit | e7ab03b3bd39219fb16f330ea7d7da6c0fac06bd (patch) | |
| tree | c0c504c4d0522ade28ba78f2a3a8ac83125a3de9 | |
| parent | 4615afccc3585501650cdf52bd4084c32d607abb (diff) | |
| download | ppe42-gcc-e7ab03b3bd39219fb16f330ea7d7da6c0fac06bd.tar.gz ppe42-gcc-e7ab03b3bd39219fb16f330ea7d7da6c0fac06bd.zip | |
* combine.c (combine_instructions): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48630 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/combine.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c792fbec76a..59717afadb7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2002-01-08 Graham Stott <grahams@redhat.com> + * combine.c (combine_instructions): Fix typo. + +2002-01-08 Graham Stott <grahams@redhat.com> + * debug.h: Use "tree" and "rtx" throughout. * debug.c: Likewise. diff --git a/gcc/combine.c b/gcc/combine.c index 64e1069ebda..d640bc447f4 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; |

