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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/combine.c | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3d8819c..9036598 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-01-07 Graham Stott <grahams@redhat.com> + + * combine.c (combine_instructions): Replace XEXP (links, 0) + with link. + 2002-01-06 H.J. Lu <hjl@gnu.org> * cfgcleanup.c (thread_jump): Fix 2 typos. @@ -326,11 +331,11 @@ Fri Jan 4 11:45:05 2002 Jeffrey A Law (law@redhat.com) * mkconfig.sh: Output to config.h, hconfig.h and tconfig.h forward defs for struct tags rtx_def, union_tree, rtvec_def - also output corresponding typedefs for rtxm, tree, and rtvcec. + also output corresponding typedefs for rtx, tree, and rtvec. * system.h: Move forward defs for struct tags rtx_def, union_tree, rtvec_def along with corresponding typedefs for rtx, tree, and - rtvcec to config.h, hconfig.h, tconfig.h + rtvec to config.h, hconfig.h, tconfig.h. 2002-01-03 Graham Stott <grahams@redhat.com> 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; |