[Bug c++/20330] New: Constructor fails to find base class in specialization

2005-03-05 Thread igodard at pacbell dot net
The compiler complains about only one of two specializations that are broadly identical. I don't see any error in either. If this example should turn out to actually be invalid, please change this report to a complaint about the quality of the diagnostic. Ivan -- Summary:

[Bug c++/20330] Constructor fails to find base class in specialization

2005-03-05 Thread igodard at pacbell dot net
--- Additional Comments From igodard at pacbell dot net 2005-03-05 08:01 --- Created an attachment (id=8333) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8333action=view) Compiler output (-v -save-temps) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20330

[Bug c++/20330] Constructor fails to find base class in specialization

2005-03-05 Thread igodard at pacbell dot net
--- Additional Comments From igodard at pacbell dot net 2005-03-05 08:02 --- Created an attachment (id=8334) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8334action=view) Source code (-save-temps) (compressed) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20330

[Bug c++/20330] Constructor fails to find base class in specialization

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Attachment #8333|application/octet-stream|text/plain mime type||

[Bug target/20331] New: Wrong code generation for the argument of the pure function in PIC

2005-03-05 Thread kkojima at gcc dot gnu dot org
The C code below extern __attribute__((pure)) int pf (int *); extern int bar; int foo (void) { return pf (bar);} is wrongly compiled with -fPIC on sh64-elf. The output doesn't any references to the symbol bar: .section.text..SHmedia32,ax .align 2 .global _foo

[Bug c++/20330] Constructor fails to find base class in specialization

2005-03-05 Thread igodard at pacbell dot net
--- Additional Comments From igodard at pacbell dot net 2005-03-05 08:18 --- Reduced test case: struct foo { int bar; }; templateint i struct bar {}; templateint i struct baz : public foo, public bari { baz() : foo(), bari() {} }; --

[Bug target/20331] Wrong code generation for the argument of the pure function in PIC

2005-03-05 Thread kkojima at gcc dot gnu dot org
-- What|Removed |Added Known to fail||3.4.4 4.0.1 4.1.0 Known to work||3.3.6

[Bug c++/20330] Constructor fails to find base class in specialization

2005-03-05 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2005-03-05 09:11 --- ::bari() ? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20330

[Bug target/18251] unable to find a register to spill in class `POINTER_REGS'

2005-03-05 Thread dieterbmeier at yahoo dot com
--- Additional Comments From dieterbmeier at yahoo dot com 2005-03-05 09:33 --- 18251gcc34.patch.bz2 makes termios.c and arpcache.i to compile again on 3_4-20050305. Thank you! Can we have this patch in 3.4.4? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18251

[Bug target/15780] bootstrap fails on crtstuff

2005-03-05 Thread schwinge-bugzilla-gcc dot gnu dot org at nic-nac-project dot de
-- What|Removed |Added CC||schwinge-bugzilla-gcc dot ||gnu dot org at nic-nac-

[Bug c++/20330] Constructor fails to find base class in specialization

2005-03-05 Thread igodard at pacbell dot net
--- Additional Comments From igodard at pacbell dot net 2005-03-05 09:37 --- Ref comment #4: yes, using :: clears the diagnostic, but why does the member in one base collide with the direct reference to another explict base? Isn't the base name itself in the derived's scope, superceding

[Bug c++/20332] New: poor diagnostic

2005-03-05 Thread igodard at pacbell dot net
In: struct bar {}; void foo1() { bar b = bar(); } void foo(bar b = bar()) {} you get: ~/ootbc/members/src$ g++ foo.cc foo.cc: In function `void foo1()': foo.cc:3: error: invalid initialization of non-const reference of type 'bar' from a temporary of type 'bar' foo.cc: At global scope:

[Bug c++/20332] poor diagnostic

2005-03-05 Thread igodard at pacbell dot net
--- Additional Comments From igodard at pacbell dot net 2005-03-05 10:22 --- Comeau gives: Comeau C/C++ 4.3.3 (Aug 6 2003 15:13:37) for ONLINE_EVALUATION_BETA1 Copyright 1988-2003 Comeau Computing. All rights reserved. MODE:strict errors C++ ComeauTest.c, line 3: error: initial value

[Bug middle-end/19721] [meta-bug] optimizations that CSE still catches

2005-03-05 Thread stevenb at suse dot de
--- Additional Comments From stevenb at suse dot de 2005-03-05 10:39 --- Subject: Re: [meta-bug] optimizations that CSE still catches Am I missing something here? I guess I'm not sure what point you're trying to make. It just seems that we could do better on initial RTL

[Bug c++/20333] New: ICE

2005-03-05 Thread igodard at pacbell dot net
-- Summary: ICE Product: gcc Version: 3.4.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: igodard at pacbell dot net

[Bug c++/20333] ICE

2005-03-05 Thread igodard at pacbell dot net
--- Additional Comments From igodard at pacbell dot net 2005-03-05 10:42 --- Created an attachment (id=8335) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8335action=view) Compiler output (-v -save-temps) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20333

[Bug c++/20333] ICE

2005-03-05 Thread igodard at pacbell dot net
--- Additional Comments From igodard at pacbell dot net 2005-03-05 10:43 --- Created an attachment (id=8336) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8336action=view) Source code (-save-temps) (compressed) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20333

[Bug ada/16368] gnatmem, gnatdll are docmented but never built

2005-03-05 Thread dannysmith at users dot sourceforge dot net
--- Additional Comments From dannysmith at users dot sourceforge dot net 2005-03-05 10:45 --- Other utilities that are documented in gnat_ugn.texi gnatpp (gnat pretty) gnatstub gnatmetric are not built in FSF tree. Nor is there any documentation on where these utilities are

[Bug c++/20330] Constructor fails to find base class in specialization

2005-03-05 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2005-03-05 11:32 --- In fact, bar and foo should be injected into class scope. Comeau, however, flag the code as invalid just like GCC does. I do not have a standard handy now to double-check. --

[Bug c++/20103] [4.0/4.1 regression] ICE in create_tmp_var with C99 style struct initializer

2005-03-05 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2005-03-05 11:41 --- It would probably also help to know why compound literals are lvalues in C99. -- What|Removed |Added

[Bug target/20331] [3.4/4.0/41 Regression] Wrong code generation for the argument of the pure function in PIC

2005-03-05 Thread giovannibajo at libero dot it
-- What|Removed |Added Summary|Wrong code generation for |[3.4/4.0/41 Regression] |the argument of the pure|Wrong code generation for

[Bug target/20331] [3.4/4.0/4.1 Regression] Wrong code generation for the argument of the pure function in PIC

2005-03-05 Thread giovannibajo at libero dot it
-- What|Removed |Added Summary|[3.4/4.0/41 Regression] |[3.4/4.0/4.1 Regression] |Wrong code generation for |Wrong code generation for

[Bug c++/20103] [4.0/4.1 regression] ICE in create_tmp_var with C99 style struct initializer

2005-03-05 Thread joseph at codesourcery dot com
--- Additional Comments From joseph at codesourcery dot com 2005-03-05 12:15 --- Subject: Re: [4.0/4.1 regression] ICE in create_tmp_var with C99 style struct initializer On Sat, 5 Mar 2005, giovannibajo at libero dot it wrote: It would probably also help to know why compound

[Bug fortran/20334] New: Dimensioned parameters get their dimensions lost.

2005-03-05 Thread toon at moene dot indiv dot nluug dot nl
This: character(len=50), dimension(100), parameter :: regels = 'Schrijf dit honderd keer uit.' print '(a)', regels end should print one hundred lines of Schrijf dit honderd keer uit. Unfortunately, it only does it only once: [EMAIL PROTECTED]:~/g95-bugs$ /usr/snp/bin/gfortran -static -O2

[Bug c++/20103] [4.0/4.1 regression] ICE in create_tmp_var with C99 style struct initializer

2005-03-05 Thread aoliva at redhat dot com
--- Additional Comments From aoliva at gcc dot gnu dot org 2005-03-05 13:36 --- Subject: Re: [PR c++/20103] failure to gimplify constructors for addressable types On Mar 4, 2005, Mark Mitchell [EMAIL PROTECTED] wrote: +foo ((B){x}); I don't think (B){x} should be an lvalue,

[Bug c++/20103] [4.0/4.1 regression] ICE in create_tmp_var with C99 style struct initializer

2005-03-05 Thread aoliva at redhat dot com
--- Additional Comments From aoliva at gcc dot gnu dot org 2005-03-05 14:03 --- Subject: Re: [PR c++/20103] failure to gimplify constructors for addressable types On Mar 5, 2005, Alexandre Oliva [EMAIL PROTECTED] wrote: On Mar 4, 2005, Mark Mitchell [EMAIL PROTECTED] wrote: +

[Bug fortran/20335] New: ICE with attached Fortran source

2005-03-05 Thread phillip dot m dot jordan at gmail dot com
I'm running gfortran from the 4.0-LATEST development snapshot: GNU Fortran 95 (GCC 4.0.0 20050226 (prerelease)) on a SUSE 9.2 GNU/Linux system. (dual AthlonMP) I know I'm supposed to attach preprocessed files only, but I can't figure out how to do that with Fortran *modules*, and there doesn't

[Bug fortran/20335] ICE with attached Fortran source

2005-03-05 Thread phillip dot m dot jordan at gmail dot com
--- Additional Comments From phillip dot m dot jordan at gmail dot com 2005-03-05 15:29 --- Created an attachment (id=8337) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8337action=view) the source code causing the Internal Compiler Error After extraction, compile with gfortran -c

[Bug fortran/20335] ICE with attached Fortran source

2005-03-05 Thread phillip dot m dot jordan at gmail dot com
--- Additional Comments From phillip dot m dot jordan at gmail dot com 2005-03-05 15:32 --- Correction: It probably shouldn't ICE even if it's *not* valid, though. ~phil -- What|Removed |Added

[Bug fortran/20178] COMPLEX function returns incompatible with g77

2005-03-05 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-03-05 15:33 --- Patch here: http://gcc.gnu.org/ml/fortran/2005-03/msg00060.html -- What|Removed |Added

[Bug c++/19311] [3.4/4.0/4.1 Regression] ICE in resolve_overloaded_unification

2005-03-05 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-03-05 15:44 --- Subject: Bug 19311 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-03-05 15:44:26 Modified files: gcc/cp : init.c pt.c typeck.c ChangeLog

[Bug c++/19311] [3.4/4.0 Regression] ICE in resolve_overloaded_unification

2005-03-05 Thread lerdsuwa at gcc dot gnu dot org
--- Additional Comments From lerdsuwa at gcc dot gnu dot org 2005-03-05 15:46 --- Fixed in the mainline. Other branches are being tested and will be fixed once I finish retesting the patch. -- What|Removed |Added

[Bug tree-optimization/18546] tree vectorizer does not understand RETURN_DECL

2005-03-05 Thread cjb at mrao dot cam dot ac dot uk
--- Additional Comments From cjb at mrao dot cam dot ac dot uk 2005-03-05 15:53 --- No you are no missing reading. This is vectorized on x86 but not on PPC. Thanks, Andrew. I'm also having trouble reproducing it on PPC (under OS X 10.3.4), though. Same GCC source tree and test

[Bug c++/20332] poor diagnostic when bind non lvalue to a reference for default arguments

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 16:33 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW

[Bug libgcj/20155] [4.0/4.1 Regression] libgcj build fails with execvp: /bin/sh: Argument list too long

2005-03-05 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-03-05 16:33 --- Subject: Bug 20155 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-03-05 16:33:15 Modified files: libjava: ChangeLog Makefile.am Makefile.in

[Bug libgcj/20155] [4.0 Regression] libgcj build fails with execvp: /bin/sh: Argument list too long

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 16:44 --- Fixed on the mainline at least. -- What|Removed |Added Summary|[4.0/4.1

[Bug c++/20333] ICE

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Attachment #8335|application/octet-stream|text/plain mime type||

[Bug tree-optimization/18546] tree vectorizer does not understand RETURN_DECL

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 17:03 --- Hmm, I am using a slightly older compiler, so maybe this is fixed already. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18546

[Bug libgcj/20155] [4.0 Regression] libgcj build fails with execvp: /bin/sh: Argument list too long

2005-03-05 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-03-05 17:33 --- Subject: Bug 20155 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-03-05 17:33:00 Modified files: libjava:

[Bug web/20336] New: gaps in list archives

2005-03-05 Thread jsm28 at gcc dot gnu dot org
The online list archives for February, both web and ftp, have gaps around the time of the system failure (i.e., from last backup to when the system went down) which need filling in from the qmail archives or any other archives if there are problems with those. Note that the ftp mbox archives

[Bug libgcj/20155] [4.0 Regression] libgcj build fails with execvp: /bin/sh: Argument list too long

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 18:04 --- Fixed also on the 4.0 branch. Thanks Roger for picking this one. -- What|Removed |Added

[Bug java/17574] [meta-bug] gcj and libgcj 4.0 tracking PR

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- Bug 17574 depends on bug 20155, which changed state. Bug 20155 Summary: [4.0 Regression] libgcj build fails with execvp: /bin/sh: Argument list too long http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20155 What|Old Value |New Value

[Bug web/20336] gaps in list archives

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 18:06 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW

[Bug tree-optimization/17863] [4.0/4.1 Regression] threefold performance loss, not inlining as much

2005-03-05 Thread steven at gcc dot gnu dot org
--- Additional Comments From steven at gcc dot gnu dot org 2005-03-05 18:49 --- Even with Richard Guenther's patches, the only thing that really helps is setting --param large-function-growth=200, or more. The default is 100. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17863

[Bug fortran/20335] ICE with attached Fortran source

2005-03-05 Thread kargl at gcc dot gnu dot org
--- Additional Comments From kargl at gcc dot gnu dot org 2005-03-05 18:57 --- Here's a rduced version. This caused by UBOUND call on the allocated array. module types type lineListType type(vertexType), dimension(:), pointer :: vertex end type end module types module flow

[Bug fortran/20335] ICE with attached Fortran source

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|critical|normal http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20335

[Bug tree-optimization/17863] [4.0/4.1 Regression] threefold performance loss, not inlining as much

2005-03-05 Thread rguenth at tat dot physik dot uni-tuebingen dot de
--- Additional Comments From rguenth at tat dot physik dot uni-tuebingen dot de 2005-03-05 19:03 --- Subject: Re: [4.0/4.1 Regression] threefold performance loss, not inlining as much steven at gcc dot gnu dot org wrote: --- Additional Comments From steven at gcc dot gnu dot org

[Bug fortran/20334] Dimensioned parameters get their dimensions lost.

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 19:17 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW

[Bug c++/20333] ICE on invalid code

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 19:26 --- The code is invalid as you don't have a closing ) for a function in the array declaration of exuApis. -- What|Removed |Added

[Bug c++/20333] ICE

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 19:31 --- Hmm, but I can reduce it to look like valid code. -- What|Removed |Added

[Bug c++/20333] [3.4/4.0/4.1 Regression] ICE on invalid code, typename outside of a template

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 19:40 --- I take that back, this is invalid code still, the typename keyword is not valid outside of a template. Reduced testcase: templateclass struct f {}; fint f2[2] = {typename fint()}; This is a regression

[Bug fortran/15754] Accepts assignment of the form P = NULL()

2005-03-05 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-03-05 19:42 --- Patch was posted here: http://gcc.gnu.org/ml/fortran/2004-07/msg00130.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15754

[Bug treelang/20326] treelang does install the backend as a driver

2005-03-05 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-05 19:43 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW

[Bug ada/20270] [4.1 Regression] Link error: unsatisfied symbols

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20270

[Bug libgcj/10353] [3.3/3.4/4.0/4.1 regression] Java testsuite failures

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=10353

[Bug target/13754] [3.4/4.0/4.1 regression] ip2k-elf ICE on multiple gotos

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13754

[Bug target/14798] [3.4/4.0/4.1 Regression] In case of SH target with -O2 option #pragma interrupt doesn't get resetted.

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14798

[Bug target/15065] [3.4/4.0/4.1 Regression] bootstrap fails during bulding libstdc++-v3 on Tru64 V5.0

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15065

[Bug bootstrap/15212] [3.4/4.0/4.1 Regression] bootstrap fails on interix3

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15212

[Bug ada/15616] [4.0/4.1 Regression] Linking error on legal program using generic package

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15616

[Bug target/16589] [4.0/4.1 regression] [m68k] segmentation fault on identical array accesses in the ?: operators' body

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16589

[Bug treelang/20326] treelang does install the backend as a driver

2005-03-05 Thread phython at gcc dot gnu dot org
--- Additional Comments From phython at gcc dot gnu dot org 2005-03-05 19:48 --- Treelang doesn't have a driver outside of gcc. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20326

[Bug rtl-optimization/17356] [4.0/4.1 Regression] [Ada] [ia64] ACATS c41325a other ICE, also while building libada

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17356

[Bug tree-optimization/17687] [4.1] sincos can be folded at the tree level

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 Version|unknown |4.0.0

[Bug target/17688] [4.1] x87 fops can handle HImodes

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Status|NEW |ASSIGNED Keywords||patch Target Milestone|---

[Bug c++/17729] [3.4/4.0/4.1 Regression] Duplicate __attribute__((deprecated)) warning

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17729

[Bug target/18170] [4.0/4.1 Regression] m32r-elf-as, m32r-linux-as debug relocation error for c++

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18170

[Bug java/18190] [4.0/4.1 regression] primitive array optimization is gone

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18190

[Bug c++/18279] [4.0/4.1 regression] missing function bodies from -fdump-translation-unit

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18279

[Bug target/18335] [3.4/4.0/4.1 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/debug/debug-1.c and debug-2 xyzzy

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18335

[Bug target/18346] [4.0/4.1 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/trampoline-1.c

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18346

[Bug java/18399] [4.0/4.1 Regression] Class initialization optimization does not work with the inliner

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18399

[Bug target/18434] [4.0/4.1 Regression] Cannot build gnattools on Tru64 UNIX V5.1B

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18434

[Bug rtl-optimization/18485] [4.0/4.1 regression] mmix-knuth-mmixware testsuite failure: g++.dg/lookup/forscope1.C g++.old-deja/g++.niklas/t132.C g++.old-deja/g++.other/singleton.C

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18485

[Bug ada/18659] [4.0/4.1 Regression] ACATS ICE in bug in tree-sra.c:1507 on x86 and ppc-darwin (6 FAIL)

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18659

[Bug tree-optimization/18727] [4.0/4.1 Regression] ACATS c43214c fails at runtime (aliasing pb)

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18727

[Bug java/18796] [4.0/4.1 Regression] gcj imports wrong superclass

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18796

[Bug ada/18859] [4.0/4.1 Regression] ACATS ICE c37305a at -O0: in tree_low_cst, at tree.c:3839

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18859

[Bug target/18863] [4.0/4.1 Regression] ICE in find_reloads

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18863

[Bug middle-end/18887] [4.0/4.1 Regression] libgcc2.h Improperly determines required built-in function size requirements.

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|critical|normal Target Milestone|--- |4.1.0

[Bug rtl-optimization/19097] [3.4/4.0/4.1 regression] Quadratic behavior with many sets for the same register in gcse CPROP

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19097

[Bug c++/19185] [3.3/3.4/4.0/4.1 Regression] ICE: cp_expr_size, at cp/cp-lang.c:308

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19185

[Bug objc/19324] [3.4/4.0/4.1 Regression] weird message for interface way in implementation

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19324

[Bug ada/19408] [4.0/4.1 Regression] ACATS c391002 failure on powerpc-darwin, wrong .space

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19408

[Bug target/19421] [4.0/4.1 regression] ICE with soft-float on m68k

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19421

[Bug middle-end/19454] [4.0/4.1 Regression] bad code generated with gcc.c-torture/execute/bf64-1.c at -O1

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19454

[Bug ada/19456] [4.0/4.1 regression] ada bootstrap failure on alpha-linux

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19456

[Bug tree-optimization/19505] [4.0/4.1 Regression] Java bytecode ICE in except.c remove_unreachable_regions

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19505

[Bug tree-optimization/19686] [4.0/4.1 Regression] loop performance decrease, not comparing against 0

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19686

[Bug tree-optimization/19835] [4.0/4.1 Regression] [AVR] Loop variable gets widened to LONG instead of int

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19835

[Bug debug/19885] [4.0/4.1 Regression] avr dwarf-2 support is broken for head 4.0/4.1

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19885

[Bug ada/19900] [4.0/4.1 Regression] ACATS c391002 c432002 ICE categorize_ctor_elements_1

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19900

[Bug middle-end/19956] [4.0/4.1 Regression] ICE copy_tree_r, at tree-inline.c:2320 on simple Ada code

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19956

[Bug ada/19959] [4.0/4.1 Regression] Can't compile gnattools for the cross targets

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19959

[Bug java/20031] [4.0/4.1 regression] ICE on missing files

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20031

[Bug ada/20042] [4.0/4.1 regression] ACATS cxaca01 assembler Bad Absolute Expression error on

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20042

[Bug ada/20089] [4.0/4.1 Regression] gnatmake broken when building ada tools

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20089

[Bug target/20093] [4.0/4.1 Regression] 23_containers/deque/cons/2.cc execution test fails on ia64-hpux, -milp32

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20093

[Bug regression/20139] [4.0/4.1 regression] cris-elf testsuite: gcc.c-torture/execute/20020720-1.c

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20139

[Bug ada/20226] [4.0/4.1 Regression] Error in __gnat_install_SEH_handler breaks bootstrap

2005-03-05 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20226

  1   2   >