This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: sparc-sun-solaris2.8 bootstrap failure
- From: Kazu Hirata <kazu at cs dot umass dot edu>
- To: ro at TechFak dot Uni-Bielefeld dot DE
- Cc: phil at jaj dot com, gcc at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Wed, 16 Jul 2003 22:48:11 -0400 (EDT)
- Subject: Re: sparc-sun-solaris2.8 bootstrap failure
- References: <16148.15758.964344.557983@xayide.TechFak.Uni-Bielefeld.DE><20030715.160343.74726799.kazu@cs.umass.edu><16148.24398.626483.861529@xayide.TechFak.Uni-Bielefeld.DE>
Hi Rainer,
Would you mind confirming that gcc bootstraps on sparc-sun-solaris2.8
with the patch below?
Kazu Hirata
Index: combine.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/combine.c,v
retrieving revision 1.369
diff -u -r1.369 combine.c
--- combine.c 13 Jul 2003 19:03:28 -0000 1.369
+++ combine.c 17 Jul 2003 02:39:15 -0000
@@ -11065,7 +11065,7 @@
&& GET_CODE (XEXP (op0, 0)) == NOT)
{
op0 = simplify_and_const_int
- (op0, mode, XEXP (XEXP (op0, 0), 0), (HOST_WIDE_INT) 1);
+ (NULL_RTX, mode, XEXP (XEXP (op0, 0), 0), (HOST_WIDE_INT) 1);
code = (code == NE ? EQ : NE);
continue;
}