[Bug c++/21974] New: linking error of basic_string

2005-06-08 Thread gcc-bugzilla at gcc dot gnu dot org
There's a linking error when I use std::basic_string with g++ 3.3, but it works perfectly in g++ 3.4 and 4.0 . I've tried it on both my Debian box with g++-3.3 and another with 5.3-RELEASE-p5 and g++32. Both of the cases cause the same error message (http://victor.csie.org/tmp/error.txt). Than

[Bug libgcj/18266] SIGSEGV in GC_register_finalizer_inner ()

2005-06-08 Thread Hans dot Boehm at hp dot com
--- Additional Comments From Hans dot Boehm at hp dot com 2005-06-09 05:10 --- Unfortunately, I haven't had time to pursue this. I think that in order to get this to fail, you want lots of weak references to objects which are also sobject to lock contention or wait/notify calls. I don'

[Bug c/21973] Segfault in GTK+ compiled with -march=pentium4 when used through JNI

2005-06-08 Thread vektor at dumbterm dot net
--- Additional Comments From vektor at dumbterm dot net 2005-06-09 04:38 --- Of course, right after I post this someone comes up with a log where the disassembly doesn't make as much sense, but still at least shows some SSE2 :) EAX=0x0001, EBX=0xa971c0e8, ECX=0xa91f4860, EDX=0x085

[Bug c/21973] New: Segfault in GTK+ compiled with -march=pentium4 when used through JNI

2005-06-08 Thread vektor at dumbterm dot net
I have discussed this issue with Andrew Pinski on IRC, but I figured it should be logged here as well. I have been investigating some crashes in Eclipse, a Java application which uses GTK+. The crashes are reproducable using the Sun 1.5 VM when GTK+ is compiled with -march=pentium4, and go away w

[Bug libgcj/21949] java.rmi.server.RMIClassLoader.getClassLoader() is private, should be public

2005-06-08 Thread mckinlay at redhat dot com
--- Additional Comments From mckinlay at redhat dot com 2005-06-09 00:56 --- I've checked this in to HEAD and Classpath cvs. Strictly speaking, it shouldn't go into GCC 4.0 as its an ABI change and our no-C++-abi-incompatible-changes policy is still in place. Do you need it for 4.0? --

[Bug c++/21971] class friend declaration doesn't allow use in class scope

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-09 00:26 --- Comeau also rejects the code. I think this is invalid but I will let Kriang comment on this. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21971

[Bug c++/21972] Bad code generated

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-09 00:24 --- Nope this is not generating bad code. i<(p==NULL)?30:(p->bb+4) is equivalent to (i<(p==NULL))?30:(p->bb+4) You want "i<((p==NULL)?30:(p->bb+4))". -- What|Removed |Added

[Bug c++/21972] New: Bad code generated

2005-06-08 Thread jordi dot prats at gmail dot com
g++ compile fine (without any warning) this example program: /*CODE*/ #include typedef struct sA { int bb; }AA; int main() { AA *p; p=NULL; for(int i=(p==NULL)?0:p->bb;i<(p==NULL)?30:(p->bb+4);i++) { std::cout << i; } return 1; } /*CODE*/ compile: g++ -g main.cxx

[Bug c++/21971] class friend declaration doesn't allow use in class scope

2005-06-08 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added CC||lerdsuwa at users dot ||sourceforge dot net Keywords|

[Bug c++/21971] New: class friend declaration doesn't allow use in class scope

2005-06-08 Thread jconner at apple dot com
The following code: class a { friend class b; b *pb; }; Produces an error message in the current mainline (4.1.0 development): bar.c:3: error: ISO C++ forbids declaration of 'b' with no type bar.c:3: error: expected ';' before '*' token 14882:2003, 11.4.7, indicates that this sh

[Bug rtl-optimization/21970] [3.4 only] Inline keyword causes computation to erroneously reduce to a constant

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 23:14 --- Confirmed, but this looks like only a bug in 3.4.x and before. It might be a latent bug on the mainline still I don't know for sure. -- What|Removed |Added ---

[Bug rtl-optimization/21970] Inline keyword causes computation to erroneously reduce to a constant

2005-06-08 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Component|c |rtl-optimization Keywords||wrong-code Known to work|

[Bug c/21970] Inline keyword causes computation to erroneously reduce to a constant

2005-06-08 Thread para at cfl dot rr dot com
--- Additional Comments From para at cfl dot rr dot com 2005-06-08 23:01 --- Created an attachment (id=9047) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9047&action=view) The stand-alone source file -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21970

[Bug c/21970] New: Inline keyword causes computation to erroneously reduce to a constant

2005-06-08 Thread para at cfl dot rr dot com
I have a function which evaluates the SHA-1 cryptographic hash function. It takes as parameters the 160-bit state and 64 bytes to hash and produces an output 160-bit state. When compiling at -O0, it is horrendously slow, but it (as far as I know) produces correct behavior. For quick reference, a

[Bug libgcj/18266] SIGSEGV in GC_register_finalizer_inner ()

2005-06-08 Thread ovidr at users dot sourceforge dot net
--- Additional Comments From ovidr at users dot sourceforge dot net 2005-06-08 21:14 --- Since this bug seems a bit lost, I've been trying some things on my own without success. Can someone please explain: If "referent" is just a RawData pointer to some Object, how are its previous fin

[Bug debug/21889] Native Solaris assembler cannot grok DTP-relative debug symbols

2005-06-08 Thread ebotcazou at gcc dot gnu dot org
--- Additional Comments From ebotcazou at gcc dot gnu dot org 2005-06-08 20:56 --- See http://gcc.gnu.org/ml/gcc-patches/2005-06/msg00478.html -- What|Removed |Added

[Bug debug/21889] Bad assembler output for Solaris TLS debug symbols

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 20:53 --- Subject: Bug 21889 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-3_4-branch Changes by: [EMAIL PROTECTED] 2005-06-08 20:52:36 Modified files: gcc: Change

[Bug debug/21889] Bad assembler output for Solaris TLS debug symbols

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 20:45 --- Subject: Bug 21889 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-06-08 20:44:58 Modified files: gcc: Change

[Bug middle-end/21965] Openssl segfaults when compiled with gcc 4.0.0 on solaris 9

2005-06-08 Thread ebotcazou at gcc dot gnu dot org
-- What|Removed |Added CC||ebotcazou at gcc dot gnu dot ||org http://gcc.gnu.org/bugzilla/

[Bug fortran/21480] trivial reshape operation gives erroneous results

2005-06-08 Thread tkoenig at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |tkoenig at gcc dot gnu dot |dot org |org URL|

[Bug middle-end/21969] New: ICE on float __attribute__((vector_size(2048)))

2005-06-08 Thread sje at cup dot hp dot com
The following one line program gives an ICE typedef float vsf __attribute__((vector_size(2048))); x.c:1: internal compiler error: in round_up, at fold-const.c:11646 I reproduced this on IA64 and HPPA platforms and I do not think it is platform specific. -- Summary: ICE on float __at

[Bug testsuite/21967] [4.1 Regression] gcc.dg/tree-ssa/loop-2.c and gcc.dg/tree-ssa/loop-4.c fail

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 20:07 --- Alos on powerpc-darwin, see . -- What|Removed |Added

[Bug target/21968] New: gcc.dg/tls/debug-1.c fails on ia64-hpux

2005-06-08 Thread jsm28 at gcc dot gnu dot org
FAIL: gcc.dg/tls/debug-1.c (test for excess errors) (a newly added test) appeared on mainline on 20050608. Not a regression; the test also ICEs with 3.4 and 4.0. This failure is with -milp32 only, not with -mlp64. The error is: tls/debug-1.c:4: internal compiler error: in

[Bug testsuite/21967] New: [4.1 Regression] gcc.dg/tree-ssa/loop-2.c and gcc.dg/tree-ssa/loop-4.c fail

2005-06-08 Thread jsm28 at gcc dot gnu dot org
FAIL: gcc.dg/tree-ssa/loop-2.c scan-tree-dump-times iter 0 has appeared on mainline on 20050608 on at least i686-pc-linux-gnu, hppa64-hpux and ia64-hpux (boht -milp32 and -mlp64). FAIL: gcc.dg/tree-ssa/loop-4.c scan-tree-dump-times iter 0 has appeared on mainline on 20050608 on at least i686-pc

[Bug target/12455] Invalid ia64 unwind data when compiling with -pg

2005-06-08 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-06-08 19:38 --- Fixed here: http://gcc.gnu.org/ml/gcc-patches/2005-06/msg00809.html -- What|Removed |Added

[Bug libstdc++/21951] [4.0 only] std::vector.reserve() unusable with -Werror -Wall -O -fno-exceptions

2005-06-08 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2005-06-08 19:16 --- This is a compiler bug. If they don't fix it in 4.0.x, then we'll have to work around it in libstdc++ 4.0 sources only. People have suggested a patch to add a dummy return. If that's posted, it seems to be p

[Bug fortran/21480] trivial reshape operation gives erroneous results

2005-06-08 Thread tkoenig at gcc dot gnu dot org
--- Additional Comments From tkoenig at gcc dot gnu dot org 2005-06-08 18:59 --- Slightly reduced testcase: $ cat 21480.f90 program reshape_bug implicit none complex :: a(2), b(2) a = (/(1.0, -1.0), (2.0, -2.0)/) write(*,*) 'from' write(*,*) a b=reshape(a, shape(a)) write(*,*) '

[Bug tree-optimization/21966] [4.1 Regression] ICE in verify_ssa building 64-bit zlib on IRIX 6

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 18:40 --- This was already fixed by: 2005-06-08 Zdenek Dvorak <[EMAIL PROTECTED]> * tree-ssa-loop-ivopts.c (rewrite_use_outer): Unshare the expression before emiting it. -- What

[Bug tree-optimization/21966] New: ICE in verify_ssa building 64-bit zlib on IRIX 6

2005-06-08 Thread gcc-bugzilla at gcc dot gnu dot org
Bootstrapping current mainline on IRIX 6.5 with --enable-libgcj fails building the 64-bit zlib: /.vol/gcc/obj/gcc-4.1.0-20050607/6.5-gcc-java/./gcc/xgcc -B/.vol/gcc/obj/gcc-4.1.0-20050607/6.5-gcc-java/./gcc/ -B/.vol/gcc/share/mips-sgi-irix6.5/bin/ -B/.vol/gcc/share/mips-sgi-irix6.5/lib/ -isys

[Bug tree-optimization/21963] [4.1 Regression] ICE (Segmentation fault) with -m64

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 18:36 --- This ICE also shows up in SPEC on x86_64. -- What|Removed |Added Severity|normal

[Bug middle-end/21964] [3.4 Regression] broken tail call at -O2 or more

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 18:13 --- Confirmed, only a regression in 3.4.x. -- What|Removed |Added Status|UNCONFIRMED

[Bug fortran/21480] trivial reshape operation gives erroneous results

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

[Bug middle-end/21964] broken tail call at -O2 or more

2005-06-08 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Component|c |middle-end Keywords||wrong-code http://gcc.gnu.org/bugzilla/show_bug.cg

[Bug tree-optimization/19768] [4.0 Regression] ICE: SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 18:04 --- Subject: Bug 19768 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-06-08 18:04:19 Modified files: gcc: Change

[Bug tree-optimization/19768] [4.0 Regression] ICE: SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 18:03 --- (In reply to comment #14) > Michael could you revert it, I have no time to do so today, I have exams to > work on all day today. I reverted it after getting approval from Mark. So this should be fixed agai

[Bug middle-end/21965] Openssl segfaults when compiled with gcc 4.0.0 on solaris 9

2005-06-08 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Component|c |middle-end Keywords||wrong-code http://gcc.gnu.org/bugzilla/show_bug.cg

[Bug c/21965] Openssl segfaults when compiled with gcc 4.0.0 on solaris 9

2005-06-08 Thread ftlofaro at yahoo dot com
--- Additional Comments From ftlofaro at yahoo dot com 2005-06-08 17:48 --- Created an attachment (id=9046) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9046&action=view) C preprocessor output This is the C preprocessor output of lhash.c, the file with the offending function. -

[Bug c/21965] Openssl segfaults when compiled with gcc 4.0.0 on solaris 9

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 17:42 --- Are you sure that this is a GCC bug, please add the preprocessed source. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21965

[Bug c/21965] New: Openssl segfaults when compiled with gcc 4.0.0 on solaris 9

2005-06-08 Thread ftlofaro at yahoo dot com
Running openssl 0.9.7g (this is the newest production version) with no arguments segfaults in lh_strhash when compiled with gcc 4.0.0 on Solaris 9, but runs fine when compiled with gcc-3.2.2. -- Summary: Openssl segfaults when compiled with gcc 4.0.0 on solaris 9

[Bug fortran/21480] trivial reshape operation gives erroneous results

2005-06-08 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-06-08 17:32 --- Reopened, the bug is still present, and apparently completely unrelated to PR21127. -- What|Removed |Added -

[Bug libstdc++/21955] std::stringbuf vs. in_avail

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 17:29 --- Subject: Bug 21955 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-08 17:29:45 Modified files: libstdc++-v3 : ChangeLog libstdc++-v3/inclu

[Bug translation/21364] [4.0/4.1 regression] [translation] %J in translation instead of %H causes ICE in de.po

2005-06-08 Thread mark at codesourcery dot com
--- Additional Comments From mark at codesourcery dot com 2005-06-08 17:23 --- Subject: Re: [4.0/4.1 regression] [translation] %J in translation instead of %H causes ICE in de.po jakub at gcc dot gnu dot org wrote: > --- Additional Comments From jakub at gcc dot gnu dot org 2005-

[Bug c/21964] New: broken tail call at -O2 or more

2005-06-08 Thread ben at 0x539 dot de
Optimisations seem to cause the post increment in the recursive function call to foo() to pass the increased value to the function. Expected output, and output when compiled without -O2: 0 0 0 0 ... Actual output with -O2 or -O3 or...: 0 1 2 3 ... #include void foo(int n); int main(void) {

[Bug translation/21364] [4.0/4.1 regression] [translation] %J in translation instead of %H causes ICE in de.po

2005-06-08 Thread jakub at gcc dot gnu dot org
--- Additional Comments From jakub at gcc dot gnu dot org 2005-06-08 17:08 --- There is a problem until the po files from the TP robot (assuming the robot is running gettext 0.14.5) are committed. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21364

[Bug translation/21364] [4.0/4.1 regression] [translation] %J in translation instead of %H causes ICE in de.po

2005-06-08 Thread mark at codesourcery dot com
--- Additional Comments From mark at codesourcery dot com 2005-06-08 17:01 --- Subject: Re: [4.0/4.1 regression] [translation] %J in translation instead of %H causes ICE in de.po joseph at codesourcery dot com wrote: > --- Additional Comments From joseph at codesourcery dot com 2

[Bug c/21962] 4.0/4.1 Regression] ] format '%012llx' expects type X, but argument has type X

2005-06-08 Thread joseph at codesourcery dot com
--- Additional Comments From joseph at codesourcery dot com 2005-06-08 16:32 --- Subject: Re: New: [bogus warning] format '%012llx' expects type X, but argument has type X On Wed, 8 Jun 2005, pluto at agmk dot net wrote: > extern void print(const char *my_format, ...) > __attribute__

[Bug target/20666] SPARC builtins should be folded if possible

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 16:03 --- Subject: Bug 20666 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-08 16:03:31 Modified files: gcc: ChangeLog gcc/config/sparc:

[Bug rtl-optimization/10588] [PPC] i==0||j==0 should use cntlzw and srawi

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 15:46 --- On the mainline we get the following now: _h: cmpwi cr7,r3,0 li r3,1 beqlr- cr7 cntlzw r3,r4 srwi r3,r3,5 blr -- http://gcc.gnu.org/bugzilla/show_bug.cgi?i

[Bug tree-optimization/21963] [4.1 Regression] ICE (Segmentation fault) with -m64

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 15:27 --- Confirmed, backtrace: #0 0x000c5364 in is_gimple_variable (t=0x0) at ../../gcc/tree-gimple.c:239 #1 0x000c5908 in is_gimple_val (t=0x0) at ../../gcc/tree-gimple.c:353 #2 0x000e5334 in force_gimple_operand

[Bug c/21962] 4.0/4.1 Regression] ] format '%012llx' expects type X, but argument has type X

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 15:04 --- : Search converges between 2004-07-08-trunk (#482) and 2004-07-09-trunk (#483). Confirmed, I think this is related to the bitfield changes. -- What|Removed |Added --

[Bug regression/21963] ICE (Segmentation fault) with -m64

2005-06-08 Thread fischer at td dot mw dot tum dot de
-- What|Removed |Added Keywords||ice-on-valid-code http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21963

[Bug regression/21963] New: ICE (Segmentation fault) with -m64

2005-06-08 Thread fischer at td dot mw dot tum dot de
sion Thread model: posix gcc version 4.1.0 20050608 (experimental) = Using -m32 works. The problem does not occur on 20050605. Victor -- Summary: ICE (Segmentation fault) with -m64 Product: gcc Version: 4.1.0 Status

[Bug c/21962] New: [bogus warning] format '%012llx' expects type X, but argument has type X

2005-06-08 Thread pluto at agmk dot net
extern void print(const char *my_format, ...) __attribute__((format(printf, 1, 2))); typedef struct { unsigned long long family:8, id:48, crc:8; } bar; void foo(bar *x) { print("%012llx\n", x->id); } $ gcc testcase.c -c -Wall testcase.c: In function 'foo': testcase.c:9: warning: format

[Bug rtl-optimization/10588] [PPC] i==0||j==0 should use cntlzw and srawi

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 14:46 --- Subject: Bug 10588 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-08 14:46:14 Modified files: gcc: ChangeLog gcc/config/rs6000:

[Bug libstdc++/21951] [4.0 only] std::vector.reserve() unusable with -Werror -Wall -O -fno-exceptions

2005-06-08 Thread veksler at il dot ibm dot com
--- Additional Comments From veksler at il dot ibm dot com 2005-06-08 14:43 --- (In reply to comment #7) > It sure as hell is for those shops that require -Werror. > > But ok, I'll be happy if it's fixed for 4.0.2. I think that your argument (as phrased) does not hold. Maybe you meant "

[Bug fortran/21961] New: PURE function in INTERFACE block not resolved as being a function

2005-06-08 Thread mhesseli at caltech dot edu
' I originally tested this using GNU Fortran 95 (GCC 4.1.0 20050602 (experimental)) and retested it using GNU Fortran 95 (GCC 4.1.0 20050608 (experimental)). --- MODULE procedures PUBLIC :: test PRIVATE :: test1,test2 INTERFACE test MODULE PROCEDUR

[Bug c++/21960] Incorrect Syntax NOT rejected

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 14:18 --- THis is valid code as comma is an operator. a, b; is valid for all expressions, a and b. Since return is a statement and not an expression we get an error for that case. -- What|Removed

[Bug c++/21960] Incorrect Syntax NOT rejected

2005-06-08 Thread eric at ez-soft dot demon dot nl
--- Additional Comments From eric at ez-soft dot demon dot nl 2005-06-08 14:17 --- Now the compiler version and OS information of the v3.3.1 compiler. Previous post gave the compiler version and OS information of the v2.95.3 compiler. Reading specs from /nfs/rvl/users/nlezu0/usr/local/

[Bug c++/21960] New: Incorrect Syntax NOT rejected

2005-06-08 Thread eric at ez-soft dot demon dot nl
Hi, The code snippet below contains a syntax error. The line "i = 4," is termited by a "," instead of a ";", but it still compiles fine. Even the result of the compilation is correct. I expected the "Parse error before ..." here, but the compiler doesn't even give a warning. If the line "printf

[Bug libstdc++/21951] [4.0 only] std::vector.reserve() unusable with -Werror -Wall -O -fno-exceptions

2005-06-08 Thread veksler at il dot ibm dot com
--- Additional Comments From veksler at il dot ibm dot com 2005-06-08 14:11 --- (In reply to comment #6) > Note Mark has said in the past (and in a private mail which was supposed to be a public one too) that > warnings cannot cause this to be a rejects valid. For the same reason, PR

[Bug libstdc++/21951] [4.0 only] std::vector.reserve() unusable with -Werror -Wall -O -fno-exceptions

2005-06-08 Thread dank at kegel dot com
--- Additional Comments From dank at kegel dot com 2005-06-08 13:57 --- It sure as hell is for those shops that require -Werror. But ok, I'll be happy if it's fixed for 4.0.2. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21951

[Bug translation/21364] [4.0/4.1 regression] [translation] %J in translation instead of %H causes ICE in de.po

2005-06-08 Thread joseph at codesourcery dot com
--- Additional Comments From joseph at codesourcery dot com 2005-06-08 13:44 --- Subject: Re: [4.0/4.1 regression] [translation] %J in translation instead of %H causes ICE in de.po On Wed, 8 Jun 2005, reichelt at gcc dot gnu dot org wrote: > Mark, I think this bug is a serious regres

[Bug translation/21364] [4.0/4.1 regression] [translation] %J in translation instead of %H causes ICE in de.po

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 13:36 --- Mark, I think this bug is a serious regression, since it renders "-Wall" in conjunction with the german locale unusable. Could we please incorporate the trivial fix in GCC 4.0.1 even if the new de.po file

[Bug libfortran/21950] All gfortran execution tests fail on Tru64 UNIX V4.0F: scalbn unresolved

2005-06-08 Thread ro at techfak dot uni-bielefeld dot de
--- Additional Comments From ro at techfak dot uni-bielefeld dot de 2005-06-08 13:34 --- Subject: Re: All gfortran execution tests fail on Tru64 UNIX V4.0F: scalbn unresolved The same problem exists on IRIX 6.5.10 (once a patch for libfortran/15266, to be submitted after testing is co

[Bug translation/21364] [translation] %J in translation instead of %H causes ICE in de.po

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 13:22 --- *** Bug 21475 has been marked as a duplicate of this bug. *** --- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 13:27 --- *** Bug 21567 has been marked as a duplicate of this

[Bug translation/21567] Segmentation fault of the compiler when compiling

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 13:27 --- The original error message reads: bug.c: In function 'aie_sql_meta_create_index': bug.c:25: warning: 'tableid' is used uninitialized in this function bug.c: In function 'main': bug.c:25: warning: 'tableid'

[Bug libfortran/21950] All gfortran execution tests fail on Tru64 UNIX V4.0F: scalbn unresolved

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

[Bug translation/21475] [4.0/4.1 regression] ICE with german locale in "is used uninitialized" warning

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 13:22 --- *** This bug has been marked as a duplicate of 21364 *** *** This bug has been marked as a duplicate of 21364 *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21475

[Bug translation/21364] [translation] %J in translation instead of %H causes ICE in de.po

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 13:22 --- *** Bug 21475 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug translation/21475] [4.0/4.1 regression] ICE with german locale in "is used uninitialized" warning

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 13:22 --- It's a dupe. *** This bug has been marked as a duplicate of 21364 *** -- What|Removed |Added --

[Bug libstdc++/21951] [4.0 only] std::vector.reserve() unusable with -Werror -Wall -O -fno-exceptions

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 13:20 --- Note Mark has said in the past (and in a private mail which was supposed to be a public one too) that warnings cannot cause this to be a rejects valid. -- What|Removed

[Bug translation/21475] [4.0/4.1 regression] ICE with german locale in "is used uninitialized" warning

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 13:18 --- Confirmed. The problem can be demonstrated with the following code snippet: === int foo() { int i; return i; } === Compiling the above with "-O -Wall" and LC_ALL=C

[Bug target/19923] [4.0/4.1 Regression] openssl is slower when compiled with gcc 4.0 than 3.3

2005-06-08 Thread giovannibajo at libero dot it
-- What|Removed |Added Summary|openssl is slower when |[4.0/4.1 Regression] openssl |compiled with gcc 4.0 than |is slower when compiled with

[Bug inline-asm/20382] internal compiler error with bogus asm output constraint

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 13:14 --- Fixed in 4.1.0 by: 2005-05-08 Roger Sayle <[EMAIL PROTECTED]> PR inline-asm/8788 * stmt.c (expand_asm_operands): Avoid calling force_reg on BLKmode operands. --

[Bug rtl-optimization/21956] [4.1 Regression] useless symbols in object files

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 13:00 --- Confirmed and this is a regression too. -- What|Removed |Added CC|

[Bug testsuite/18333] gcc.dg/compat/struct-layout-1 generator cannot be compiled with gcc 2.95

2005-06-08 Thread rguenth at gcc dot gnu dot org
--- Additional Comments From rguenth at gcc dot gnu dot org 2005-06-08 12:57 --- The same happens on i686-pc-linux-gnu bootstrapping mainline with gcc 2.95.4 (aka gcc-2.95.4-14 from Debian woody). So it seems to be a host compiler bug or at least is host compiler dependent. From gcc 3.

[Bug tree-optimization/21958] [4.1 Regression] verify_stmts reports tree node sharing assertion

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 12:54 --- Fixed already by: 2005-06-08 Zdenek Dvorak <[EMAIL PROTECTED]> * tree-ssa-loop-ivopts.c (rewrite_use_outer): Unshare the expression before emiting it. -- What|Removed

[Bug target/18333] mmix-knuth-mmixware testsuite failure: gcc.dg/compat/struct-layout-1 generator

2005-06-08 Thread hp at gcc dot gnu dot org
--- Additional Comments From hp at gcc dot gnu dot org 2005-06-08 12:50 --- I haven't mentioned before that the host gcc is 2.95.3. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18333

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

2005-06-08 Thread phython at gcc dot gnu dot org
--- Additional Comments From phython at gcc dot gnu dot org 2005-06-08 12:43 --- Ok, I seem to be wrong, hash_set still seems to be used for implicit sets. However, the destination registers in gcc 4.1 are all different: SET hash table (1251 buckets, 1001 entries) Index 0 (hash value 3

[Bug c++/19497] [3.4/4.0/4.1 regression] Invalid declaration in template diagnosed too late

2005-06-08 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Known to work||4.1.0 Target Milestone|3.4.5 |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19497

[Bug ada/20530] gnatlink does not respect -mno-cygwin

2005-06-08 Thread gerrit at gcc dot gnu dot org
--- Additional Comments From gerrit at gcc dot gnu dot org 2005-06-08 12:40 --- >> According to >> http://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Option-Index.html#Option-Index >> >> -mno-cygwin is not a FSF option, so closing this PR. This option just triggers gcc to use other lib and in

[Bug ada/21959] [4.1 Regression] Ada depeends on signed overflow

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 12:32 --- Confirmed based on the whole thread. -- What|Removed |Added CC|

[Bug ada/21959] New: [4.1 Regression] Ada depeends on signed overflow

2005-06-08 Thread pinskia at gcc dot gnu dot org
See for the full description. -- Summary: [4.1 Regression] Ada depeends on signed overflow Product: gcc Version: 4.1.0 Status: UNCONFIRMED Keywords: wrong-code, build Severity: norma

[Bug tree-optimization/21029] [4.1 Regression] vrp miscompiles Ada front-end, drops loop exit test in well-defined wrap-around circumstances

2005-06-08 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-08 12:29 --- (In reply to comment #19) > This is still not fixed. But this time it is not VRP which is causing the problem but the Ada front-end, I will file a new bug. -- What|Removed

[Bug tree-optimization/21861] [meta-bug] scalar evolution type conversion

2005-06-08 Thread pinskia at gcc dot gnu dot org
-- Bug 21861 depends on bug 21029, which changed state. Bug 21029 Summary: [4.1 Regression] vrp miscompiles Ada front-end, drops loop exit test in well-defined wrap-around circumstances http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21029 What|Old Value |New Valu

[Bug ada/20530] gnatlink does not respect -mno-cygwin

2005-06-08 Thread gerrit at gcc dot gnu dot org
--- Additional Comments From gerrit at gcc dot gnu dot org 2005-06-08 12:22 --- (In reply to comment #2) > Right, gnatmake has never supported -mno-cygwin. Instead, I'd suggest > configuring gcc for mingw to start with. > > According to > http://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Opti

[Bug fortran/18157] ice-on-valid code, pointer to user-defined type, fold-struct.c

2005-06-08 Thread c dot lemmen at fz-juelich dot de
--- Additional Comments From c dot lemmen at fz-juelich dot de 2005-06-08 12:19 --- Bug persists in GNU F95 version 4.1.0 20050608, line number is now testing/testcase_fold.f90: In Funktion »MAIN__«: testing/testcase_fold.f90:22: interner Compiler-Fehler: in fold_convert, bei fold

[Bug testsuite/21702] Typo in gcc/testsuite/gcc.target/i386/i386.exp

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 12:10 --- Fixed in mainline. Thanks for spotting this! -- What|Removed |Added Status|UNC

[Bug testsuite/21702] Typo in gcc/testsuite/gcc.target/i386/i386.exp

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 12:02 --- Subject: Bug 21702 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-08 12:02:20 Modified files: gcc/testsuite : ChangeLog gcc/testsuite/gcc.

[Bug c/21958] New: verify_stmts reports tree node sharing assertion

2005-06-08 Thread nick at sqrt dot co dot uk
Using GCC 4.1 mainline checkout at 20050607. $ ./i686-linux/gcc/xgcc -B ./i686-linux/gcc -S bug1.c -O1 bug1.c: In function ‘foo’: bug1.c:2: error: Incorrect sharing of tree nodes D.1290_47 = (charD.1 * *) pD.1236_3; (charD.1 * *) pD.1236_3; bug1.c:2: internal compiler error: verify_stmts failed.

[Bug c++/19497] [3.4/4.0/4.1 regression] Invalid declaration in template diagnosed too late

2005-06-08 Thread nathan at gcc dot gnu dot org
--- Additional Comments From nathan at gcc dot gnu dot org 2005-06-08 11:51 --- 2005-06-08 Nathan Sidwell <[EMAIL PROTECTED]> PR c++/19497 * cp-tree.def (USING_DECL): Update documentation. * cp-tree.h (DECL_DEPENDENT_P): New. (USING_DECL_DECLS, USING_DE

[Bug c++/19497] [3.4/4.0/4.1 regression] Invalid declaration in template diagnosed too late

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 11:49 --- Subject: Bug 19497 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-08 11:49:24 Modified files: gcc/cp : ChangeLog class.c cp-tree.def cp-tree

[Bug c++/20563] [4.0 Regression] Infinite loop in diagnostic (and ice after error message)

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 11:28 --- Fixed on mainline (will become GCC 4.1.0) and the 3.4-branch (will become GCC 3.4.5). Waiting for the 4.0 branch to thaw. -- What|Removed |Added --

[Bug fortran/18108] [gfortran] overloading does not work for functions

2005-06-08 Thread c dot lemmen at fz-juelich dot de
--- Additional Comments From c dot lemmen at fz-juelich dot de 2005-06-08 11:28 --- Subject: Re: [gfortran] overloading does not work for functions -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Lots of previously working code (somewhere around December 2004) now (June 2005) exhibits

[Bug c++/20563] [3.4/4.0/4.1 Regression] Infinite loop in diagnostic (and ice after error message)

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 11:26 --- Subject: Bug 20563 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-3_4-branch Changes by: [EMAIL PROTECTED] 2005-06-08 11:26:06 Modified files: gcc/cp : Change

[Bug c++/19894] pointer-to-void member not rejected in template

2005-06-08 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-06-08 11:12 --- Fixed in mainline (will become GCC 4.1.0). -- What|Removed |Added Status|ASSIG

[Bug c++/20563] [3.4/4.0/4.1 Regression] Infinite loop in diagnostic (and ice after error message)

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 11:09 --- Subject: Bug 20563 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-08 11:09:13 Modified files: gcc/cp : ChangeLog parser.c pt.c gcc/

[Bug c++/19894] pointer-to-void member not rejected in template

2005-06-08 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-08 11:09 --- Subject: Bug 19894 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-08 11:09:13 Modified files: gcc/cp : ChangeLog parser.c pt.c gcc/

[Bug fortran/18108] [gfortran] overloading does not work for functions

2005-06-08 Thread c dot lemmen at fz-juelich dot de
--- Additional Comments From c dot lemmen at fz-juelich dot de 2005-06-08 10:20 --- Subject: Re: [gfortran] overloading does not work for functions martin at mpa-garching dot mpg dot de wrote: > --- Additional Comments From martin at mpa-garching dot mpg dot de > 2005-06-08 09:0

[Bug tree-optimization/21861] [meta-bug] scalar evolution type conversion

2005-06-08 Thread schwab at suse dot de
-- Bug 21861 depends on bug 21029, which changed state. Bug 21029 Summary: [4.1 Regression] vrp miscompiles Ada front-end, drops loop exit test in well-defined wrap-around circumstances http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21029 What|Old Value |New Valu

  1   2   >