This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
RE: Fix typo in gcc/integrate.c
- To: "'gcc-patches at gcc dot gnu dot org'" <gcc-patches at gcc dot gnu dot org>
- Subject: RE: Fix typo in gcc/integrate.c
- From: "Billinghurst, David (CRTS)" <David dot Billinghurst at riotinto dot com>
- Date: Fri, 19 Oct 2001 03:51:26 -0000
- Cc: "'kenner at vlsi1 dot ultra dot nyu dot edu'" <kenner at vlsi1 dot ultra dot nyu dot edu>
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 ();