This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Fix typo in gcc/integrate.c


Committed as obvious fix after bootstrap on cygwin

-----Original Message-----
From: Billinghurst, David (CRTS) 
Sent: Friday, 19 October 2001 10:41 
To: 'gcc-patches@gcc.gnu.org'
Subject: Fix typo in gcc/integrate.c


This a typo in gcc/integrate.c which prevents bootstrap on a number of
platforms.  Bootstrap in progress on irix and cygwin.  Is it an "obvious"
fix.

2001-10-19  David Billinghurst <David.Billinghurst@riotinto.com>

	* integrate.c (integrate_decl_tree): Fix typo

Index: integrate.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/integrate.c,v
retrieving revision 1.170
diff -u -p -r1.170 integrate.c
--- integrate.c 2001/10/18 21:34:12     1.170
+++ integrate.c 2001/10/19 00:36:03
@@ -1785,7 +1785,7 @@ integrate_decl_tree (let, map)
          else if (GET_CODE (r) == CONCAT)
            {
              REGNO_DECL (REGNO (XEXP (r, 0))) = d;
-             REGNO_DECL (REGNO (XEPX (r, 1))) = d;
+             REGNO_DECL (REGNO (XEXP (r, 1))) = d;
            }
 
          apply_change_group ();


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]