aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-07 08:46:27 +0000
committergrahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-07 08:46:27 +0000
commit3395ab5f4a7ff82eaa3df8b96564bf4a73c91691 (patch)
tree01e158f0494b5d774e125b9db25523014492076e
parent27f119e7afbfd98728b4a2ef310bae5da7e5fd32 (diff)
* combine.c (combine_instructions): Replace XEXP (links, 0)
with link. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48595 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog9
-rw-r--r--gcc/combine.c2
2 files changed, 8 insertions, 3 deletions
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 <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 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;