On Thu, 22 Jan 2009, Matthias Klose wrote:
> Richard Guenther schrieb:
> > A release candidate for GCC 4.3.3 is available from
> >
> > ftp://gcc.gnu.org/pub/gcc/snapshots/4.3.3-RC-20090117/
> >
> > and shortly its mirrors. It has been generated from SVN revision 143460.
>
> Lucas did do two test rebuilds of the current Debian lenny/testing archive for
> i486 using the Debian gcc-4.3 packages, one based on gcc-4_3-branch from
> 20080905 and one based on gcc-4_3-branch from 20090117 including the proposed
> patch for PR38905.
>
> progressions (in terms of packages):
>
> - ed, testsuite runs sucessful
> - freefem3d: fixed build failure
> - gambit: fixed build failure
> - ilmbase: fixed build failure
> - gmsh: fixed link failure
> - speech-tools: fixed build failure
> - texmacs: fixed build failure
> - xapian-core: testsuite runs sucessful
>
> regression:
>
> - debtags, filed PR38902
Which looks invalid. We now reject
class Foo {
enum { TAGS = 1 };
template <typename TAGS>
void foo(TAGS x, int i)
{
switch (i) {
case TAGS:;
}
}
};
which we previously accepted.
Richard.