Commit 6253d571 by Graham Stott Committed by Graham Stott

combine.c (combine_instructions): Replace XEXP (links, 0) with link.


        * combine.c (combine_instructions): Replace XEXP (links, 0)
        with link.

From-SVN: r48595
parent c7941bcc
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> 2002-01-06 H.J. Lu <hjl@gnu.org>
* cfgcleanup.c (thread_jump): Fix 2 typos. * cfgcleanup.c (thread_jump): Fix 2 typos.
...@@ -326,11 +331,11 @@ Fri Jan 4 11:45:05 2002 Jeffrey A Law (law@redhat.com) ...@@ -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 * mkconfig.sh: Output to config.h, hconfig.h and tconfig.h
forward defs for struct tags rtx_def, union_tree, rtvec_def 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, * system.h: Move forward defs for struct tags rtx_def, union_tree,
rtvec_def along with corresponding typedefs for rtx, tree, and 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> 2002-01-03 Graham Stott <grahams@redhat.com>
......
...@@ -629,7 +629,7 @@ combine_instructions (f, nregs) ...@@ -629,7 +629,7 @@ combine_instructions (f, nregs)
for (nextlinks = LOG_LINKS (link); for (nextlinks = LOG_LINKS (link);
nextlinks; nextlinks;
nextlinks = XEXP (nextlinks, 1)) nextlinks = XEXP (nextlinks, 1))
if ((next = try_combine (insn, XEXP (links, 0), if ((next = try_combine (insn, link,
XEXP (nextlinks, 0), XEXP (nextlinks, 0),
&new_direct_jump_p)) != 0) &new_direct_jump_p)) != 0)
goto retry; goto retry;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment