public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* RE: 3.3 target date?
@ 2003-02-19  9:39 S. Bosscher
  2003-02-19 14:40 ` Joel Sherrill
  0 siblings, 1 reply; 4+ messages in thread
From: S. Bosscher @ 2003-02-19  9:39 UTC (permalink / raw)
  To: 'Gerald Pfeifer ', 'Andreas Jaeger '
  Cc: 'Paolo Carlini ', 'David Rasmussen ',
	'gcc@gcc.gnu.org '

Gerald Pfeifer wrote:
> On Wed, 19 Feb 2003, Andreas Jaeger wrote:
> > Our testing at SuSE showed that 3.3 is in a pretty good shape.
> 
> That's interesting, because we still have 77 regressions in 3.3 listed
> in GNATS:
---- 8< ----
> And some 26 regressions in 3.2 (some of which might also apply to 3.3);
> plus a significant compile-time performance problem.

Fortunately all of those 26 are either fixed for 3.3 or included in those 77
open PRs you mentioned.

Greetz
Steven

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 3.3 target date?
  2003-02-19  9:39 3.3 target date? S. Bosscher
@ 2003-02-19 14:40 ` Joel Sherrill
  2003-02-19 14:46   ` Peter Barada
  0 siblings, 1 reply; 4+ messages in thread
From: Joel Sherrill @ 2003-02-19 14:40 UTC (permalink / raw)
  To: S. Bosscher
  Cc: 'Gerald Pfeifer ', 'Andreas Jaeger ',
	'Paolo Carlini ', 'David Rasmussen ',
	'gcc@gcc.gnu.org '



"S. Bosscher" wrote:
> 
> Gerald Pfeifer wrote:
> > On Wed, 19 Feb 2003, Andreas Jaeger wrote:
> > > Our testing at SuSE showed that 3.3 is in a pretty good shape.
> >
> > That's interesting, because we still have 77 regressions in 3.3 listed
> > in GNATS:
> ---- 8< ----
> > And some 26 regressions in 3.2 (some of which might also apply to 3.3);
> > plus a significant compile-time performance problem.
> 
> Fortunately all of those 26 are either fixed for 3.3 or included in those 77
> open PRs you mentioned.

PR9255 is a regression from 3.2 which prevents m68k targets from
compiling.

Overnight, i386-rtems, sh-rtems, and sh-rtemself wouldn't complete a
build
on the 3.3 branch.  I have updated my tree and am going to see if these
failures were fixed overnight and are repeatable on i386-elf, sh-coff,
and
sh-elf respectively.

> Greetz
> Steven

--joel sherrill

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 3.3 target date?
  2003-02-19 14:40 ` Joel Sherrill
@ 2003-02-19 14:46   ` Peter Barada
  2003-02-19 17:25     ` m68k regression (PR9255) was " Joel Sherrill
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Barada @ 2003-02-19 14:46 UTC (permalink / raw)
  To: joel.sherrill; +Cc: S.Bosscher, pfeifer, aj, pcarlini, pinkfloydhomer, gcc


>PR9255 is a regression from 3.2 which prevents m68k targets from
>compiling.
>
>Overnight, i386-rtems, sh-rtems, and sh-rtemself wouldn't complete a
>build on the 3.3 branch.  I have updated my tree and am going to see
>if these failures were fixed overnight and are repeatable on i386-elf,
>sh-coff, and sh-elf respectively.

Joal,

Try this patch.  It works on Uberbaum:

Index: combine.c
===================================================================
RCS file: /cvs/uberbaum/gcc/combine.c,v
retrieving revision 1.340
diff -c -r1.340 combine.c
*** combine.c	14 Feb 2003 07:35:44 -0000	1.340
--- combine.c	19 Feb 2003 13:56:53 -0000
***************
*** 8068,8073 ****
--- 8068,8079 ----
    unsigned HOST_WIDE_INT nonzero;
    int i;
  
+ #if 1
+   /* Can only simplify integer modes  */
+   if (!(GET_MODE_CLASS (mode) == MODE_INT || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT))
+     return x;
+ #endif
+ 
    /* Simplify VAROP knowing that we will be only looking at some of the
       bits in it.

-- 
Peter Barada
peter@baradas.org

^ permalink raw reply	[flat|nested] 4+ messages in thread

* m68k regression (PR9255) was Re: 3.3 target date?
  2003-02-19 14:46   ` Peter Barada
@ 2003-02-19 17:25     ` Joel Sherrill
  0 siblings, 0 replies; 4+ messages in thread
From: Joel Sherrill @ 2003-02-19 17:25 UTC (permalink / raw)
  To: Peter Barada; +Cc: S.Bosscher, pfeifer, aj, pcarlini, pinkfloydhomer, gcc



Peter Barada wrote:
> 
> >PR9255 is a regression from 3.2 which prevents m68k targets from
> >compiling.
> >
> >Overnight, i386-rtems, sh-rtems, and sh-rtemself wouldn't complete a
> >build on the 3.3 branch.  I have updated my tree and am going to see
> >if these failures were fixed overnight and are repeatable on i386-elf,
> >sh-coff, and sh-elf respectively.
> 
> Joal,
> 
> Try this patch.  It works on Uberbaum:

It works on the 3.3 branch and allows m68k-elf to build to completion.  
m68k-rtems and m68k-coff have not been checked with this patch.

Since it is to a common file, someone very knowledgeable will have
to review it.  

--joel

> Index: combine.c
> ===================================================================
> RCS file: /cvs/uberbaum/gcc/combine.c,v
> retrieving revision 1.340
> diff -c -r1.340 combine.c
> *** combine.c   14 Feb 2003 07:35:44 -0000      1.340
> --- combine.c   19 Feb 2003 13:56:53 -0000
> ***************
> *** 8068,8073 ****
> --- 8068,8079 ----
>     unsigned HOST_WIDE_INT nonzero;
>     int i;
> 
> + #if 1
> +   /* Can only simplify integer modes  */
> +   if (!(GET_MODE_CLASS (mode) == MODE_INT || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT))
> +     return x;
> + #endif
> +
>     /* Simplify VAROP knowing that we will be only looking at some of the
>        bits in it.
> 
> --
> Peter Barada
> peter@baradas.org

-- 
Joel Sherrill, Ph.D.             Director of Research & Development
joel@OARcorp.com                 On-Line Applications Research
Ask me about RTEMS: a free RTOS  Huntsville AL 35805
Support Available                (256) 722-9985

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-02-19 16:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-19  9:39 3.3 target date? S. Bosscher
2003-02-19 14:40 ` Joel Sherrill
2003-02-19 14:46   ` Peter Barada
2003-02-19 17:25     ` m68k regression (PR9255) was " Joel Sherrill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).