[Bug c++/21631] diagnostic for a non constant reference when passed a non lvalue (copy constructor)

2005-05-17 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-17 20:17 --- Note T(T&) is still a copy constructor, just not one which takes a constant reference. Also note: it really bolls down to this testcase: int f(int&); int f(); int g(void) { return f(1); } If we get rid

[Bug target/21632] New: ICE with small model attribute on ia64

2005-05-17 Thread jakub at gcc dot gnu dot org
struct S { void *s[256]; }; struct T { long t[23]; struct S *u; }; extern struct T #ifdef __ia64__ __attribute__((model (small))) #endif v; void * foo (void) { return v.u->s[0]; } ICEs on gcc-4_0-branch at -O2, but did not ICE before the PR target/21412 patch was checked in. The only di

[Bug libgcj/18220] Test case libjava.lang/Process_3 does not end if "sed" not available

2005-05-17 Thread daney at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |daney at gcc dot gnu dot org |dot org | Status|NEW

[Bug libgcj/18266] SIGSEGV in GC_register_finalizer_inner ()

2005-05-17 Thread daney at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |daney at gcc dot gnu dot org |dot org | Status|NEW

[Bug libgcj/18893] null pointer exception in the Logger.getCallerStackFrame()

2005-05-17 Thread daney at gcc dot gnu dot org
-- What|Removed |Added Status|UNCONFIRMED |NEW http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18893

[Bug target/21535] Empty inline assembly cause the generated code to be wrong?

2005-05-17 Thread yhlin at sdesigns dot com
--- Additional Comments From yhlin at sdesigns dot com 2005-05-17 20:44 --- Reading the output assembly twice, it's true that they are equivalent, it's just that the div is run in the branch delay slot of bnez in the firt case. It seems we need strict prologue/epilogue for __asm__ stat

[Bug libgcj/18266] SIGSEGV in GC_register_finalizer_inner ()

2005-05-17 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|daney at gcc dot gnu dot org|unassigned at gcc dot gnu ||dot org Status|ASSIGNED

[Bug bootstrap/21633] New: Bootstrap fails on Suse multiple x86_64: undefined reference to `__ctype_b_loc'

2005-05-17 Thread t dot muhlhofer at lse dot ac dot uk
The bootstrap fails in, I believe, stage 3 on a server with 4 x86_64 CPUs running Suse. Same thing happens with version 3.4.3. This particular one was done with make -j 2, but I also tried on one cpu and the same thing happens. I did configure and make in an object directory different from the one

[Bug target/21632] ICE with small model attribute on ia64

2005-05-17 Thread jakub at gcc dot gnu dot org
--- Additional Comments From jakub at gcc dot gnu dot org 2005-05-17 21:12 --- Particularly the change that matters is ia64_expand_load_address, which no longer splits it. src is small_addr_symbolic_operand in this case. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21632

[Bug target/21479] optimizer removes incorrectly variable comparision in if clause

2005-05-17 Thread schlie at comcast dot net
--- Additional Comments From schlie at comcast dot net 2005-05-17 21:24 --- (In reply to comment #10) > (In reply to comment #8) > > - yes, however as the loigical extention of: > >"a null reference is undefined" => "may trap" => "will trap" > >is simply wrong, and is not justify

[Bug preprocessor/21634] New: [4.1 regression] Bogus line number zero in # 0 ""

2005-05-17 Thread falk at debian dot org
gcc version 4.1.0 20050517 (experimental) [EMAIL PROTECTED]:~% cpp-4.0 < /dev/null # 1 "" # 1 "" # 1 "" # 1 "" [EMAIL PROTECTED]:~% cpp < /dev/null # 1 "" # 0 "" # 1 "" # 1 "" [EMAIL PROTECTED]:~% cpp < /de

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-05-17 Thread pluto at agmk dot net
--- Additional Comments From pluto at agmk dot net 2005-05-17 21:39 --- (In reply to comment #44) I've tested PR19664 patch + updated PR20218 patch + v3 patch and they work fine on amd64. I'll test fixes soon on powerpc on testcase from PR21382 too. -- http://gcc.gnu.org/

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-05-17 Thread mark at codesourcery dot com
--- Additional Comments From mark at codesourcery dot com 2005-05-17 21:40 --- Subject: Re: libstdc++ headers should have pop/push of the visibility around the declarations pcarlini at suse dot de wrote: > --- Additional Comments From pcarlini at suse dot de 2005-05-17 19:05 > -

[Bug SWING/21635] New: GLib-GObject-WARNING with jython

2005-05-17 Thread sbodomerle at gmail dot com
executing the below code snippet in jython: gcc version 4.0.1 20050508 (prerelease) (Debian 4.0.0-6) Jython 2.1 import javax.swing as swing win = swing.JFrame("JYTHON") win.size = (100, 100) win.show() and closing the window from the window manager results in the following: (.:29481): GLib-GObj

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-05-17 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-05-17 21:47 --- Subject: Bug 19664 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-05-17 21:47:13 Modified files: gcc/cp : ChangeLog decl2.c Log message:

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-05-17 Thread hjl at lucon dot org
--- Additional Comments From hjl at lucon dot org 2005-05-17 21:50 --- Mark, is http://gcc.gnu.org/ml/gcc-patches/2005-02/msg00180.html OK for mainline as well as 4.0? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19664

[Bug target/21128] Returning vector 32-bits or larger generates ICE

2005-05-17 Thread jconner at apple dot com
--- Additional Comments From jconner at apple dot com 2005-05-17 21:50 --- Patch committed to mainline on 13 May 2005. -- What|Removed |Added URL|

[Bug preprocessor/21634] [4.1 regression] Bogus line number zero in # 0 ""

2005-05-17 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-17 21:55 --- *** This bug has been marked as a duplicate of 21250 *** -- What|Removed |Added

[Bug preprocessor/21250] [4.1 Regression] line number 0 for causes GAS to complain

2005-05-17 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-17 21:55 --- *** Bug 21634 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-05-17 Thread mark at codesourcery dot com
--- Additional Comments From mark at codesourcery dot com 2005-05-17 21:58 --- Subject: Re: libstdc++ headers should have pop/push of the visibility around the declarations hjl at lucon dot org wrote: > --- Additional Comments From hjl at lucon dot org 2005-05-17 21:50 > ---

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-05-17 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2005-05-17 22:00 --- > One of HJ's patches is a middle-end patch, and I'm not sure I know > enough to review it. I'd have to start by researching the ELF spec, for > example, and we've found that various version of binutils have wei

[Bug tree-optimization/21636] New: Missed ccp optimization

2005-05-17 Thread pinskia at gcc dot gnu dot org
The following code we miss one ccp optimization: struct f { int i; }; int g()throw() { f a; a.i = 1; f *a1 = &a; int *i = &a1->i; return *i; /* This should be turned into a.i */ } We get right now: Visiting statement: a1_3 = &a; Lattice value changed to CONSTANT &a. Adding SSA edges

[Bug bootstrap/21633] Bootstrap fails on Suse multiple x86_64: undefined reference to `__ctype_b_loc'

2005-05-17 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-17 22:10 --- Your glibc headers do not match the library which you have installed. -- What|Removed |Added

[Bug target/21128] Returning vector 32-bits or larger generates ICE

2005-05-17 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=21128

[Bug bootstrap/21633] Bootstrap fails on Suse multiple x86_64: undefined reference to `__ctype_b_loc'

2005-05-17 Thread t dot muhlhofer at lse dot ac dot uk
--- Additional Comments From t dot muhlhofer at lse dot ac dot uk 2005-05-17 22:15 --- Oh... damn! Shoulda seen this. Thanks! Sorry about the bug. T -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21633

[Bug libgcj/21637] New: URL.openStream doesn't throw a FileNotFoundException with some urls

2005-05-17 Thread bkonrath at redhat dot com
Version: gcc-java-4.0.0-5 from FC4 rawhide Test Case: import java.io.IOException; import java.io.InputStream; import java.net.URL; public class URLTest { public static void main(String[] args) throws IOException { // replace this with any jar on your system

[Bug tree-optimization/21638] New: [4.1 regression] cris-elf broken, dce is_gimple_reg_type (type=0x0) building newlib

2005-05-17 Thread hp at gcc dot gnu dot org
With LAST_UPDATED: "Tue May 17 13:57:35 UTC 2005" in a unified tree, it built (with one new test failing compared to "Tue May 17 06:38:21 UTC 2005"). With "Tue May 17 19:08:13 UTC 2005", I get: ... /home/hp/combined/cris-sim/./gcc/xgcc -B/home/hp/combined/cris-sim/./gcc/ -nostdinc -B/home/hp/combin

[Bug tree-optimization/21639] New: poisoned ggc memory used for -ftree-vectorize

2005-05-17 Thread janis at gcc dot gnu dot org
The SPEC CPU2000 tests bzip2, gap, and gcc cause mainline GCC to segfault when built on powerpc64-linux with: -m32 -O2 -ftree-vectorize -maltivec -mabi=altivec \ --param ggc-min-expand=0 --param ggc-min-heapsize=0

[Bug libgcj/18220] Test case libjava.lang/Process_3 does not end if "sed" not available

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

[Bug libgcj/18220] Test case libjava.lang/Process_3 does not end if "sed" not available

2005-05-17 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-05-18 01:00 --- Subject: Bug 18220 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-05-18 01:00:16 Modified files: libjava: ChangeLog libjava/testsuite/

[Bug libgcj/18220] Test case libjava.lang/Process_3 does not end if "sed" not available

2005-05-17 Thread daney at gcc dot gnu dot org
--- Additional Comments From daney at gcc dot gnu dot org 2005-05-18 01:05 --- libjava.lang/Process_3.java should now fail if 'sed' is not available. -- What|Removed |Added

[Bug ada/21611] ACATS Failures After Successfully Built using Cygwin 3.3.3

2005-05-17 Thread anh_vn_vo at yahoo dot com
--- Additional Comments From anh_vn_vo at yahoo dot com 2005-05-18 01:06 --- After further checking, the run-time support was not built. In fact, running any Ada code containing Ada task triggers "failed run-time assertion : Tasking not implemented on this configuration" error message.

[Bug tree-optimization/21640] New: Internal compiler error with -O3

2005-05-17 Thread arjones at simultan dot dyndns dot org
I will attach default.c (preprocessed, completely standalone) as soon as bugzilla gives me the chance. Here what happens: <55 [EMAIL PROTECTED] /tmp>gcc -c -O3 -o default.o default.c default.c: In function 'print_defaults': default.c:673: internal compiler error: in get_indirect_ref_operands, at t

[Bug tree-optimization/21640] Internal compiler error with -O3

2005-05-17 Thread arjones at simultan dot dyndns dot org
--- Additional Comments From arjones at simultan dot dyndns dot org 2005-05-18 04:41 --- Created an attachment (id=8916) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8916&action=view) Compressed (otherwise 250K) standalone preprocessed source file -- http://gcc.gnu.org/bugzil

[Bug target/21632] ICE with small model attribute on ia64

2005-05-17 Thread rth at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |rth at gcc dot gnu dot org |dot org | Status|UNCONFIRMED

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

2005-05-17 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-05-18 05:57 --- This happens on Linux as well. -- What|Removed |Added Status|UNCONFIRMED

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

2005-05-17 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-05-18 06:04 --- *** This bug has been marked as a duplicate of 18434 *** -- What|Removed |Added St

[Bug tree-optimization/21640] Internal compiler error with -O3

2005-05-17 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-18 06:04 --- *** This bug has been marked as a duplicate of 21173 *** -- What|Removed |Added

[Bug tree-optimization/21173] [4.0/4.1 regression] miscompiled pointer subtraction broke Linux kernel

2005-05-17 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-18 06:04 --- *** Bug 21640 has been marked as a duplicate of this bug. *** -- What|Removed |Added

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

2005-05-17 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-05-18 06:04 --- *** Bug 20089 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug target/21323] internal compiler error: Segmentation fault

2005-05-17 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-05-18 06:09 --- Do you still reproduce this? I suppose I've not bootstrapped with anything other than alphaev67 in a while, so this might be an ev4 bug... -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21323

[Bug tree-optimization/21638] [4.1 regression] cris-elf broken, dce is_gimple_reg_type (type=0x0) building newlib

2005-05-17 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-18 06:11 --- There were two major patches which went in during this time. The CFG inliner and the Jeff Law's patch, either could have caused this. -- What|Removed |Added --

<    1   2