combine.c (combine_instructions): Replace XEXP (links, 0) with link.
authorGraham Stott <grahams@redhat.com>
Mon, 7 Jan 2002 08:46:27 +0000 (08:46 +0000)
committerGraham Stott <grahams@gcc.gnu.org>
Mon, 7 Jan 2002 08:46:27 +0000 (08:46 +0000)
        * combine.c (combine_instructions): Replace XEXP (links, 0)
        with link.

From-SVN: r48595

gcc/ChangeLog
gcc/combine.c

index 3d8819cbee38a6cac6613ecdd3521cf702f96f89..903659886692bf57149b64853b02117b3e3991aa 100644 (file)
@@ -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>
 
index 3d6d1fe80ae11037c94398c30b77d81c9ef8fe1f..64e1069ebda4a0250d23b4512735c19338da3f02 100644 (file)
@@ -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;