diff options
author | Graham Stott <grahams@redhat.com> | 2002-01-07 08:46:27 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2002-01-07 08:46:27 +0000 |
commit | 6253d571fac307ce4a23a3d5a840ac58cceb6463 (patch) | |
tree | 01e158f0494b5d774e125b9db25523014492076e /gcc/combine.c | |
parent | c7941bcc1bad4203faf57b01b297b5f0fcbf61be (diff) | |
download | gcc-6253d571fac307ce4a23a3d5a840ac58cceb6463.zip gcc-6253d571fac307ce4a23a3d5a840ac58cceb6463.tar.gz gcc-6253d571fac307ce4a23a3d5a840ac58cceb6463.tar.bz2 |
combine.c (combine_instructions): Replace XEXP (links, 0) with link.
* combine.c (combine_instructions): Replace XEXP (links, 0)
with link.
From-SVN: r48595
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 3d6d1fe..64e1069 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -629,7 +629,7 @@ combine_instructions (f, nregs) for (nextlinks = LOG_LINKS (link); nextlinks; nextlinks = XEXP (nextlinks, 1)) - if ((next = try_combine (insn, XEXP (links, 0), + if ((next = try_combine (insn, link, XEXP (nextlinks, 0), &new_direct_jump_p)) != 0) goto retry; |