From: Graham Stott Date: Mon, 7 Jan 2002 08:46:27 +0000 (+0000) Subject: combine.c (combine_instructions): Replace XEXP (links, 0) with link. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6253d571fac307ce4a23a3d5a840ac58cceb6463;p=gcc.git combine.c (combine_instructions): Replace XEXP (links, 0) with link. * combine.c (combine_instructions): Replace XEXP (links, 0) with link. From-SVN: r48595 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3d8819cbee3..90365988669 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-01-07 Graham Stott + + * combine.c (combine_instructions): Replace XEXP (links, 0) + with link. + 2002-01-06 H.J. Lu * 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 diff --git a/gcc/combine.c b/gcc/combine.c index 3d6d1fe80ae..64e1069ebda 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;