[Bug fortran/27035] present doesn't work on array

2006-04-05 Thread paul dot richard dot thomas at cea dot fr
--- Comment #10 from paul dot richard dot thomas at cea dot fr 2006-04-05 07:02 --- > program main > call foo (5) > end program main > subroutine foo(n, a) > integer :: n > integer, dimension(5), optional :: a > print *, n > if (present (a)) call abort () > end subroutine foo

[Bug classpath/27028] Iterator.hasNext() throws ConcurrentModificationException

2006-04-05 Thread rmathew at gcc dot gnu dot org
--- Comment #4 from rmathew at gcc dot gnu dot org 2006-04-05 07:05 --- (In reply to comment #2) > The difference between Sun's and Classpath's implementation appears to be that > Classpath will check for Concurrent Modification on both hasNext() and next() > calls, while Sun's implement

[Bug c++/12226] [3.3 Regression] g++ fails to enforce accessibility requirement for copy constructor

2006-04-05 Thread jason at gcc dot gnu dot org
--- Comment #19 from jason at gcc dot gnu dot org 2006-04-05 07:05 --- Giving an error for this testcase is no longer correct under DR 391: http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#391 -- jason at gcc dot gnu dot org changed: What|Removed

[Bug c++/12226] [3.3 Regression] g++ fails to enforce accessibility requirement for copy constructor

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #20 from pinskia at gcc dot gnu dot org 2006-04-05 07:10 --- (In reply to comment #19) > Giving an error for this testcase is no longer correct under DR 391: > > http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#391 That would be recorded as PR 25950. *** This

[Bug c++/25950] [3.4/4.0/4.1] [DR 391] Reference binding and explicit copy constructors

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #20 from pinskia at gcc dot gnu dot org 2006-04-05 07:10 --- *** Bug 12226 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug fortran/27035] present doesn't work on array

2006-04-05 Thread paul dot richard dot thomas at cea dot fr
--- Comment #11 from paul dot richard dot thomas at cea dot fr 2006-04-05 07:17 --- (In reply to comment #7) > I don't think this is defined code: > if (present (a)) call abort () > call foo_ (a) > If a is not present, you should not be able to use a in any way. Not quite; as I

[Bug tree-optimization/27022] ICE in build_polynomial_chrec, at tree-chrec.h / mpfr-2.2.0

2006-04-05 Thread c dot lemmen at fz-juelich dot de
--- Comment #3 from c dot lemmen at fz-juelich dot de 2006-04-05 07:25 --- Created an attachment (id=11210) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11210&action=view) Preprocessed source that triggers the ICE Sorry, I forgot -- http://gcc.gnu.org/bugzilla/show_bug.

[Bug fortran/27035] present doesn't work on array

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #12 from pinskia at gcc dot gnu dot org 2006-04-05 07:25 --- (In reply to comment #11) > (In reply to comment #7) > > I don't think this is defined code: > > if (present (a)) call abort () > > call foo_ (a) > > If a is not present, you should not be able to use a in

[Bug fortran/26891] Automatic conversion for optional parameters of missing dummies

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-04-05 07:25 --- *** Bug 27035 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug tree-optimization/26763] [4.1/4.2 Regression] wrong final value of induction variable calculated

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #12 from rguenth at gcc dot gnu dot org 2006-04-05 08:16 --- Subject: Bug 26763 Author: rguenth Date: Wed Apr 5 08:16:38 2006 New Revision: 112697 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112697 Log: 2006-04-05 Richard Guenther <[EMAIL PROTECTED]>

[Bug tree-optimization/26763] [4.1/4.2 Regression] wrong final value of induction variable calculated

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #13 from rguenth at gcc dot gnu dot org 2006-04-05 08:20 --- Subject: Bug 26763 Author: rguenth Date: Wed Apr 5 08:20:21 2006 New Revision: 112698 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112698 Log: 2006-04-05 Richard Guenther <[EMAIL PROTECTED]>

[Bug tree-optimization/26763] [4.1/4.2 Regression] wrong final value of induction variable calculated

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #14 from rguenth at gcc dot gnu dot org 2006-04-05 08:22 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNE

[Bug tree-optimization/27022] ICE in build_polynomial_chrec, at tree-chrec.h / mpfr-2.2.0

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2006-04-05 08:29 --- works for me with 20060330 and 20060404 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27022

[Bug target/26778] GCC4 moves the result of a conditional block through inadequate registers

2006-04-05 Thread guillaume dot melquiond at ens-lyon dot fr
--- Comment #3 from guillaume dot melquiond at ens-lyon dot fr 2006-04-05 08:59 --- Since the runtime slowdown between the binaries produced by GCC3 and GCC4 was not negligible, I did search a bit more for workarounds. It was quite simple in fact: passing -mno-sse produced assembly code

[Bug libstdc++/26875] Array allocator use count is shared between array_allocator instances

2006-04-05 Thread pcarlini at suse dot de
--- Comment #9 from pcarlini at suse dot de 2006-04-05 09:41 --- (In reply to comment #8) > Here's a fix that seems to work. Agree with Paolo, this should go into > mainline > and gcc-4.1 Juyt assign the PR to yourself... ;) Maybe the copy constructor should copy _M_used? Or, you could

[Bug tree-optimization/27039] New: Unable to determine # of iterations for a simple loop

2006-04-05 Thread rakdver at gcc dot gnu dot org
With the fix for PR 26763, we are unable to determine # of iterations of the following loop, more precisely, we are unable to determine that it rolls -- for that, we would need to fold p_4 + 4B > p_4 + 8B. int foo (int *p) { int i = 0, *x; for (x = p; x < p + 2; x++) i++; return i; }

[Bug libgcj/25414] should update rmic

2006-04-05 Thread aph at gcc dot gnu dot org
--- Comment #4 from aph at gcc dot gnu dot org 2006-04-05 09:53 --- Subject: Bug 25414 Author: aph Date: Wed Apr 5 09:53:08 2006 New Revision: 112699 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112699 Log: 2006-04-05 Archit Shah <[EMAIL PROTECTED]> PR java/25414

[Bug tree-optimization/27039] Unable to determine # of iterations for a simple loop

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2006-04-05 09:57 --- Confirmed. That gives us a testcase at least. Now, back to the folding problem of PTR +- CST CMP PTR +- CST where all of PTR / CST are of pointer type naturally and unsigned usually. The problem was that the

[Bug tree-optimization/27039] [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop

2006-04-05 Thread rguenth at gcc dot gnu dot org
-- rguenth at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |rguenth at gcc dot gnu dot |dot org

[Bug tree-optimization/27039] [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop

2006-04-05 Thread rakdver at atrey dot karlin dot mff dot cuni dot cz
--- Comment #2 from rakdver at atrey dot karlin dot mff dot cuni dot cz 2006-04-05 10:05 --- Subject: Re: Unable to determine # of iterations for a simple loop > Confirmed. That gives us a testcase at least. > > Now, back to the folding problem of > > PTR +- CST CMP PTR +- CST

[Bug tree-optimization/27039] [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop

2006-04-05 Thread rguenther at suse dot de
--- Comment #3 from rguenther at suse dot de 2006-04-05 10:13 --- Subject: Re: [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop On Wed, 5 Apr 2006, rakdver at atrey dot karlin dot mff dot cuni dot cz wrote: > Subject: Re: Unable to determine # of iterations

[Bug tree-optimization/27039] [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop

2006-04-05 Thread rakdver at atrey dot karlin dot mff dot cuni dot cz
--- Comment #4 from rakdver at atrey dot karlin dot mff dot cuni dot cz 2006-04-05 10:20 --- Subject: Re: [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop > > > Confirmed. That gives us a testcase at least. > > > > > > Now, back to the folding problem of >

[Bug tree-optimization/27039] [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop

2006-04-05 Thread rguenther at suse dot de
--- Comment #5 from rguenther at suse dot de 2006-04-05 10:28 --- Subject: Re: [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop On Wed, 5 Apr 2006, rakdver at atrey dot karlin dot mff dot cuni dot cz wrote: > > Umm. Correct :/ I guess the only way to "fix"

[Bug tree-optimization/27039] [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop

2006-04-05 Thread rakdver at atrey dot karlin dot mff dot cuni dot cz
--- Comment #6 from rakdver at atrey dot karlin dot mff dot cuni dot cz 2006-04-05 10:39 --- Subject: Re: [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop > would be much better here. The question is of course, if the programmer > is allowed to write > > x

[Bug tree-optimization/27039] [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop

2006-04-05 Thread rguenther at suse dot de
--- Comment #7 from rguenther at suse dot de 2006-04-05 10:47 --- Subject: Re: [4.1/4.2 Regression] Unable to determine # of iterations for a simple loop > > would be much better here. The question is of course, if the programmer > > is allowed to write > > > > x + (size_t)-1 > >

[Bug middle-end/26996] interpret_rhs_modify_expr calls fold_convert (vector_type, -1)

2006-04-05 Thread spop at gcc dot gnu dot org
--- Comment #2 from spop at gcc dot gnu dot org 2006-04-05 12:33 --- Subject: Bug 26996 Author: spop Date: Wed Apr 5 12:33:06 2006 New Revision: 112700 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112700 Log: PR tree-optimization/26996 * tree-scalar-evolution.

[Bug tree-optimization/26919] [4.1/4.2 regression] ICE in cgraph_estimate_size_after_inlining with a large number of arguments

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #10 from rguenth at gcc dot gnu dot org 2006-04-05 13:01 --- Reduced testcase, compile with --param inline-call-cost=0 struct A { A() {} }; struct B { A a; B(A, int) {} }; void foo() { B b(A(), 0); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26919

[Bug libstdc++/27042] New: Assembler Error: symbol `_ZT' is already defined

2006-04-05 Thread ludovic at ludovic-brenta dot org
$ ../gcc-4.1.0/configure --prefix=$HOME/opt/gcc-4.1.0.tmp --enable-languages=ada,c,c++ --with-as=$HOME/opt/binutils-2.16.1/bin/as --with-gnu-as --with-ld=$HOME/opt/binutils-2.16.1/bin/ld --with-gnu-ld --enable-bootstrap=no ... $ make ... /export/home/lbre/src/gcc-4.1.0.o/./gcc/xgcc -shared-libg

[Bug java/27025] ICE on simple initializer

2006-04-05 Thread aph at gcc dot gnu dot org
--- Comment #5 from aph at gcc dot gnu dot org 2006-04-05 13:19 --- I don't think this is a regression. [EMAIL PROTECTED] ~]$ ~/gcc/install-4.0/bin/gcj -C z.java z.java: In class 'z': z.java: In method 'z.main(java.lang.String[])': z.java:9: internal compiler error: Segmentation fault P

[Bug fortran/26891] Automatic conversion for optional parameters of missing dummies

2006-04-05 Thread hjl at gcc dot gnu dot org
--- Comment #6 from hjl at gcc dot gnu dot org 2006-04-05 13:23 --- Subject: Bug 26891 Author: hjl Date: Wed Apr 5 13:23:35 2006 New Revision: 112701 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112701 Log: Correct PR number in ChangeLogs. gcc/fortran/ 2006-04-03 Paul Thom

[Bug tree-optimization/26919] [4.1/4.2 regression] ICE in cgraph_estimate_size_after_inlining with a large number of arguments

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #11 from rguenth at gcc dot gnu dot org 2006-04-05 13:29 --- I have a fix. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|

[Bug libstdc++/27042] Assembler Error: symbol `_ZT' is already defined

2006-04-05 Thread ebotcazou at gcc dot gnu dot org
--- Comment #1 from ebotcazou at gcc dot gnu dot org 2006-04-05 13:35 --- > As can be seen from the configure options, this is with GNU > binutils 2.16.1. What's the configure shell? What's the version of GNU make? What's the bootstrap compiler? > I also tried the Sun assembler and

[Bug middle-end/26996] interpret_rhs_modify_expr calls fold_convert (vector_type, -1)

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2006-04-05 13:42 --- Fixed on the mainline - this problem is latent in 4.1, can you commit this obviously safe patch there, too (though techically it might not be a regression)? -- rguenth at gcc dot gnu dot org changed:

[Bug middle-end/26898] Fold does not fold signed + CST1 CMP signed + CST2

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2006-04-05 13:47 --- This is mine. And I have a patch posted. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug bootstrap/27042] Assembler Error: symbol `_ZT' is already defined

2006-04-05 Thread ludovic at ludovic-brenta dot org
--- Comment #2 from ludovic at ludovic-brenta dot org 2006-04-05 13:47 --- $ make --version GNU Make 3.80 Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A

[Bug middle-end/24556] gcc can't inline functions using setjmp

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #11 from rguenth at gcc dot gnu dot org 2006-04-05 13:48 --- I'm not working on this. Re-closing as WONTFIX. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added --

[Bug middle-end/25186] (short)(((int)short_var) <<1) should be folded so that the shift is done in the short type

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #7 from rguenth at gcc dot gnu dot org 2006-04-05 13:49 --- I'm no longer working on this. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/26898] Fold does not fold signed + CST1 CMP signed + CST2

2006-04-05 Thread patchapp at dberlin dot org
--- Comment #5 from patchapp at dberlin dot org 2006-04-05 13:50 --- Subject: Bug number PR26898 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-04/msg00190.html -- http://gcc.gnu.org/bugzilla/sh

/usr/src/sys/net80211/ieee80211_node.c:175: internal compiler error: Segmentation fault: 11

2006-04-05 Thread Mr. Chernozemsky
root: gcc -v Using built-in specs. Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 3.4.4 [FreeBSD] 20050518 root: uname -a FreeBSD ws3-plovdiv.digsys.bg 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #0: Wed Mar 22 20:44:32 EET 2006 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IB

[Bug bootstrap/27042] Assembler Error: symbol `_ZT' is already defined

2006-04-05 Thread ebotcazou at gcc dot gnu dot org
--- Comment #3 from ebotcazou at gcc dot gnu dot org 2006-04-05 13:57 --- > (that's from GNAT 3.15p, binary distribution from AdaCore; but the > compiler used to build strstream.cc is ./xgcc, i.e. GCC 4.1.0 > built in stage1. And, as I said, the same errors occur with > --enable-bootst

[Bug middle-end/26565] [4.0/4.1 Regression] Unaligned accesses with __attribute__(packed) and memcpy

2006-04-05 Thread patchapp at dberlin dot org
--- Comment #12 from patchapp at dberlin dot org 2006-04-05 14:00 --- Subject: Bug number PR26565 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-04/msg00192.html -- http://gcc.gnu.org/bugzilla/s

[Bug other/27043] New: building Ada rts does not find 'as'

2006-04-05 Thread rolf dot ebert dot gcc at gmx dot de
Building on Windows XPSP2, NTFS file system using MSYS 1.0.10. If I don't specify --with-as to configure, the compilers (all) build well until stage3. Only when the stage3 compiler starts building the Ada run time system, it cannot find 'as' anymore: rm -f ../stamp-gnatlib touch ../stamp-gnatlib

[Bug java/27025] ICE on simple initializer

2006-04-05 Thread aph at gcc dot gnu dot org
--- Comment #6 from aph at gcc dot gnu dot org 2006-04-05 14:12 --- As far as I can see this bug is in every version of gcj that has ever existed. There is special code (in merge_string_cste()) to convert an integer constant to a constant string for concatenation. However, there isn't

[Bug rtl-optimization/27044] New: Loop variables incorrectly initialized with optimization on

2006-04-05 Thread ned at bike-nomad dot com
In the following code, in the loop at line 381 of jtagmkII.c (line 2586 of the attached jtagmkII.i), msglen (and l, as I recall) contain incorrect values. This only happens when optimization is turned on (-O2); it does not happen with -O1. The code runs correctly when compiled with gcc-3.3 using op

[Bug rtl-optimization/27044] Loop variables incorrectly initialized with optimization on

2006-04-05 Thread ned at bike-nomad dot com
--- Comment #1 from ned at bike-nomad dot com 2006-04-05 14:17 --- Created an attachment (id=11211) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11211&action=view) Preprocessed source demonstrating bug Bug is at line 2585/2586 of attached file -- http://gcc.gnu.org/bugzilla/

[Bug rtl-optimization/27044] Loop variables incorrectly initialized with optimization on

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-04-05 14:26 --- It's hard to verify with this big (non-executable) testcase. Is there a chance you can strengthen your claim? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27044

[Bug c++/27045] New: c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread l_heldt at poczta dot onet dot pl
c++ is generating incorrect optimized code for xor operations on long long. Version which is affected is: g++ (GCC) 4.0.2 20051125 (Red Hat 4.0.2-8) Following (proper) code is inlined into bad assembly when optimization is turned on: namespace __gnu_cxx { /** hash special

[Bug c++/27045] c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread l_heldt at poczta dot onet dot pl
--- Comment #1 from l_heldt at poczta dot onet dot pl 2006-04-05 15:17 --- Created an attachment (id=11212) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11212&action=view) File containing hash specifications -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27045

[Bug c++/27045] c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread l_heldt at poczta dot onet dot pl
--- Comment #2 from l_heldt at poczta dot onet dot pl 2006-04-05 15:17 --- Created an attachment (id=11213) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11213&action=view) Implementation of RequestId -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27045

[Bug c++/27045] c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread l_heldt at poczta dot onet dot pl
--- Comment #3 from l_heldt at poczta dot onet dot pl 2006-04-05 15:18 --- After compilation: g++ test.cpp req.cpp -O0 program works fine. After compilation with: g++ test.cpp req.cpp -O2 it breaks with SIGABRT. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27045

[Bug classpath/27028] Iterator.hasNext() throws ConcurrentModificationException

2006-04-05 Thread mckinlay at redhat dot com
--- Comment #5 from mckinlay at redhat dot com 2006-04-05 15:19 --- (In reply to comment #4) > I would argue that Sun's implementation is correct in this case in the > sense that hasNext() doesn't actually modify anything, only next() does. Yeah, I agree - although you might get a bogus

[Bug classpath/27028] Iterator.hasNext() throws ConcurrentModificationException

2006-04-05 Thread mckinlay at redhat dot com
-- mckinlay at redhat dot com changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |mckinlay at redhat dot com |dot org

[Bug bootstrap/27042] Assembler Error: symbol `_ZT' is already defined

2006-04-05 Thread ludovic at ludovic-brenta dot org
--- Comment #4 from ludovic at ludovic-brenta dot org 2006-04-05 15:21 --- --enable-bootstrap=no + "make bootstrap" cause a successful build: ... /export/home/lbre/src/gcc-4.1.0.bootstrap/./gcc/xgcc -shared-libgcc -B/export/home/lbre/src/gcc-4.1.0.bootstrap/./gcc -nostdinc++ -L/export/

[Bug classpath/24632] java.util.HashMap$HashIterator.hasNext throws ConcurrentModificationException

2006-04-05 Thread mckinlay at redhat dot com
--- Comment #6 from mckinlay at redhat dot com 2006-04-05 15:22 --- *** This bug has been marked as a duplicate of 27028 *** -- mckinlay at redhat dot com changed: What|Removed |Added --

[Bug classpath/27028] Iterator.hasNext() throws ConcurrentModificationException

2006-04-05 Thread mckinlay at redhat dot com
--- Comment #6 from mckinlay at redhat dot com 2006-04-05 15:22 --- *** Bug 24632 has been marked as a duplicate of this bug. *** -- mckinlay at redhat dot com changed: What|Removed |Added ---

[Bug fortran/27046] New: gfortran print flush in dll

2006-04-05 Thread mikko dot lyly at csc dot fi
PRINT* in gfortran 4.2.0 compiled dll's needs CALL FLUSH to perform correctly when called from gcc (3.4.2, 3.4.5, 4.1) compiled main. Reproducible sample: $ gfortran -shared -o ftesti.dll ftesti.f90 ftesti.f90: --- subroutine print_from_gfortran(txt) implicit none character :: txt p

[Bug tree-optimization/26919] [4.1/4.2 regression] ICE in cgraph_estimate_size_after_inlining with a large number of arguments

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #12 from rguenth at gcc dot gnu dot org 2006-04-05 15:41 --- Subject: Bug 26919 Author: rguenth Date: Wed Apr 5 15:41:18 2006 New Revision: 112709 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112709 Log: 2006-04-05 Richard Guenther <[EMAIL PROTECTED]>

[Bug tree-optimization/26919] [4.1 regression] ICE in cgraph_estimate_size_after_inlining with a large number of arguments

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #13 from rguenth at gcc dot gnu dot org 2006-04-05 15:44 --- Fixed on the mainline. Let's wait if the changed inlining causes regressions before backporting. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added -

[Bug bootstrap/27042] Assembler Error: symbol `_ZT' is already defined

2006-04-05 Thread ebotcazou at gcc dot gnu dot org
--- Comment #5 from ebotcazou at gcc dot gnu dot org 2006-04-05 15:47 --- > The bootstrap then completes successfully. Wunderbar. :-) > So: "make" fails, "make bootstrap" works, but the commands > invoked are identical. Could it be that gcc 2.8.1 silently > miscompiled cc1plus in the

[Bug fortran/27047] New: gfortran print flush in dll

2006-04-05 Thread mikko dot lyly at csc dot fi
PRINT* in gfortran 4.2.0 compiled dll's needs CALL FLUSH to perform correctly when called from gcc (3.4.2, 3.4.5, 4.1) compiled main. Reproducible sample: $ gfortran -shared -o ftesti.dll ftesti.f90 ftesti.f90: --- subroutine print_from_gfortran(txt) implicit none character :: txt p

Re: [Bug c++/27045] c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread Graham Stott
All, Not a bug, this is yet another case of type pruning. Use -fno-strict-aliasing or fix your code. Graham

[Bug c++/27045] c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread graham dot stott at btinternet dot com
--- Comment #4 from graham dot stott at btinternet dot com 2006-04-05 16:00 --- Subject: Re: c++ is generating incorrect optimized code for xor operations on long long All, Not a bug, this is yet another case of type pruning. Use -fno-strict-aliasing or fix your code. Graham --

Re: [Bug c++/27045] c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread Graham Stott
All, Not a bug, this is yet another case of type pruning. Use -fno-strict-aliasing or fix your code. Graham

[Bug c++/27045] c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread graham dot stott at btinternet dot com
--- Comment #5 from graham dot stott at btinternet dot com 2006-04-05 16:00 --- Subject: Re: c++ is generating incorrect optimized code for xor operations on long long All, Not a bug, this is yet another case of type pruning. Use -fno-strict-aliasing or fix your code. Graham --

[Bug fortran/27047] gfortran print flush in dll

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-04-05 16:02 --- *** This bug has been marked as a duplicate of 27046 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --

[Bug fortran/27046] gfortran print flush in dll

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-04-05 16:02 --- *** Bug 27047 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27046

[Bug tree-optimization/8781] Pessimization of C++ (functional) code

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #20 from rguenth at gcc dot gnu dot org 2006-04-05 16:05 --- Because they are not the same: (gdb) call debug_generic_expr(0xb7e31c94) struct noop_tD.2008 (gdb) call debug_generic_expr(0xb7e3505c) struct noop_tD.2008 generated by #0 build1_stat (code=NOP_EXPR, type=0xb7e3

[Bug libfortran/27046] gfortran print flush in dll

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-04-05 16:08 --- This was fixed for the non windows case for sure. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c++/8781] Pessimization of C++ (functional) code

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #21 from rguenth at gcc dot gnu dot org 2006-04-05 16:11 --- The main difference is the TYPE_DEPENDENT_P_VALID valid lang-type flag. So this looks like a frontend problem. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/27045] c++ is generating incorrect optimized code for xor operations on long long

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-04-05 16:13 --- *** This bug has been marked as a duplicate of 21920 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --

[Bug c/21920] alias violating

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #90 from pinskia at gcc dot gnu dot org 2006-04-05 16:13 --- *** Bug 27045 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug middle-end/26996] interpret_rhs_modify_expr calls fold_convert (vector_type, -1)

2006-04-05 Thread spop at gcc dot gnu dot org
--- Comment #4 from spop at gcc dot gnu dot org 2006-04-05 17:25 --- Subject: Bug 26996 Author: spop Date: Wed Apr 5 17:25:26 2006 New Revision: 112711 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112711 Log: PR tree-optimization/26996 * tree-scalar-evolution.

[Bug middle-end/26996] interpret_rhs_modify_expr calls fold_convert (vector_type, -1)

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #5 from rguenth at gcc dot gnu dot org 2006-04-05 17:29 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug tree-optimization/27022] ICE in build_polynomial_chrec, at tree-chrec.h / mpfr-2.2.0

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-04-05 18:25 --- This was fixed by the patch which fixed PR 26992 so closing as a dup of that bug. *** This bug has been marked as a duplicate of 26992 *** -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug tree-optimization/26992] [4.2 Regression] Internal Compiler Error in dwarf2out.c:7607 build_polynomial_chrec

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-04-05 18:25 --- *** Bug 27022 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug rtl-optimization/27044] Loop variables incorrectly initialized with optimization on

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-04-05 18:27 --- Can you try 4.0.3? Otherwise just report this to Apple instead as you are using Apple's hacked up Compiler. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/27004] [4.1/4.2 Regression] Insane amount of memory needed at -O1 and above because of salias and large switch

2006-04-05 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Summary|[4.1/4.2 Regression] Insane |[4.1/4.2 Regression] Insane |amount of memory neede

[Bug tree-optimization/26948] ICE: tree check: expected ssa_name, with -ftree-vectorize

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-04-05 18:38 --- Yes this is a dup of bug 26197. *** This bug has been marked as a duplicate of 26197 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug tree-optimization/26197] [4.2 regression] ICE in is_old_name with vectorizer

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #16 from pinskia at gcc dot gnu dot org 2006-04-05 18:38 --- *** Bug 26948 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug classpath/27028] Iterator.hasNext() throws ConcurrentModificationException

2006-04-05 Thread bryce at gcc dot gnu dot org
--- Comment #7 from bryce at gcc dot gnu dot org 2006-04-05 18:41 --- Subject: Bug 27028 Author: bryce Date: Wed Apr 5 18:41:17 2006 New Revision: 112714 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112714 Log: 2006-04-05 Bryce McKinlay <[EMAIL PROTECTED]> PR class

[Bug libgcj/27024] Implement URLConnection.getFileNameMap

2006-04-05 Thread tromey at gcc dot gnu dot org
--- Comment #1 from tromey at gcc dot gnu dot org 2006-04-05 18:43 --- Subject: Bug 27024 Author: tromey Date: Wed Apr 5 18:43:15 2006 New Revision: 112715 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112715 Log: libjava/classpath: PR libgcj/27024: * java/net/

[Bug classpath/27028] Iterator.hasNext() throws ConcurrentModificationException

2006-04-05 Thread mckinlay at redhat dot com
--- Comment #8 from mckinlay at redhat dot com 2006-04-05 18:43 --- Fix checked in to Classpath HEAD and gcc-4_1_branch -- mckinlay at redhat dot com changed: What|Removed |Added -

Mp3 e Bluetooth!

2006-04-05 Thread Emmedue-s.r.l.
Novita' assoluta!Nuovissimi occhiali da sole con lettore/registratore MP3 incorporato ed i fantastici occhiali con BLUETOOTH incorporato! Per ascoltare la Vs. musica preferita e per telefonare a mani libere completamente SENZA CAVI!!!Per vedere questi gioielli tecnologici clicchi su; http://1go.it

[Bug libgcj/27024] Implement URLConnection.getFileNameMap

2006-04-05 Thread tromey at gcc dot gnu dot org
--- Comment #2 from tromey at gcc dot gnu dot org 2006-04-05 18:55 --- I checked in a fix to the 4.1 branch. For svn trunk I am looking at a more complete merge with Classpath. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27024

[Bug java/25847] libjava build doesn't stop when there is a fatal error

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-04-05 19:14 --- Always do a make check, this is the correct thing to do when checking the compiler anyways. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug c/27050] New: error during kernel FreeBSD 5.4 compilation

2006-04-05 Thread dol at reedcat dot net
cc -O -pipe -D_KERNEL -DKLD_MODULE -nostdinc -I- -include /usr/src/sys/i386/compile/SPIKE/opt_global.h -I. -I@ -I@/contrib/altq -I/usr/include -finline-limit=8000 -fno-common -I/usr/src/sys/i386/compile/SPIKE -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mn

R__E_M_0_V_E

2006-04-05 Thread Noreen Cornell
U,N,S,U,B,S,C,R,I,,B,E

[Bug target/26504] compute_frame_pointer_to_cfa_displacement error for avr target with --with-dwarf2

2006-04-05 Thread bjkeen at super dot org
--- Comment #8 from bjkeen at super dot org 2006-04-05 20:11 --- (In reply to comment #6) > Can either one of you try the patch in PR 26015? > Putting #define FRAME_POINTER_CFA_OFFSET(FNDECL) 0 as indicated in that patch, into config/avr.h seems to work, but it is also necessary to s

[Bug c/27051] New: Compiler generates .sdata when -mno-sdata specified

2006-04-05 Thread jsworley at qwest dot net
Given the following code: float abc(float a, float b) { return ((a - b) * 0.1); } Compiled with the -mno-sdata flag, the compiler still defines an .sdata item for the floating constant 0.1, which causes problems for embedded systems that rely on -mno-sdata meaning NO .sdata This bug can be c

[Bug fortran/27021] Problem with nearest(tiny(o),-1.0)/2.0

2006-04-05 Thread kargl at gcc dot gnu dot org
--- Comment #2 from kargl at gcc dot gnu dot org 2006-04-05 20:50 --- I sent a preliminary patch for this problem to fortran@ http://gcc.gnu.org/ml/fortran/2006-04/msg00084.html -- kargl at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/27050] error during kernel FreeBSD 5.4 compilation

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-04-05 21:06 --- Can you attach the preprocessed source? reading http://gcc.gnu.org/bugs.html tells you how to get the preprocessed source. The other thing you should be doing is also trying to update the GCC version you have becaus

[Bug middle-end/27050] error during kernel FreeBSD 5.4 compilation

2006-04-05 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-04-05 21:11 --- This: cc: Internal error: Killed (program cc1) hints at a out-of-memory condition or someone killing cc1. So I guess this is invalid. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27050

[Bug c++/27052] New: When using excessive -ftemplate-depth g++ segfaults

2006-04-05 Thread gcc at magfr dot user dot lysator dot liu dot se
When compiling foo.C using the command line g++ -ftemplate-depth-2 foo.C the result is g++: Internal error: Segmentation fault (program cc1plus) Please submit a full bug report. See http://gcc.gnu.org/bugs.html> for instructions. instead of the expected foo.C:3: error: template instantiation

[Bug c++/27052] When using excessive -ftemplate-depth g++ segfaults

2006-04-05 Thread gcc at magfr dot user dot lysator dot liu dot se
--- Comment #1 from gcc at magfr dot user dot lysator dot liu dot se 2006-04-05 21:14 --- Created an attachment (id=11214) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11214&action=view) Recursive template for error triggering -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=2

[Bug c++/27052] When using excessive -ftemplate-depth g++ segfaults

2006-04-05 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-04-05 21:16 --- Actually what is happening here is that the stack is overflowing before hitting the limit you set :). -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27052

[Bug middle-end/27050] error during kernel FreeBSD 5.4 compilation

2006-04-05 Thread kargl at gcc dot gnu dot org
--- Comment #3 from kargl at gcc dot gnu dot org 2006-04-05 21:25 --- (In reply to comment #1) > > The other thing you should be doing is also trying to update the GCC version > you have because 3.4.2 is over a year old now. > Andrew, he's using the version of gcc bundled with FreeBSD

[Bug libgcj/23682] gnu.java.nio.SelectorImpl.select(long) throws ArrayIndexOutOfBoundsException

2006-04-05 Thread tromey at gcc dot gnu dot org
--- Comment #4 from tromey at gcc dot gnu dot org 2006-04-05 21:38 --- One possible problem I see here is that the 'interestOps' of a SelectionKeyImpl can change while getFDsAsArray is running. There are a few possible fixes here, the simplest would be to avoid having two loops in getFDs

[Bug libgcj/26625] libgcj-4.2.0.jar not rebuilt after a source file change

2006-04-05 Thread tromey at gcc dot gnu dot org
--- Comment #1 from tromey at gcc dot gnu dot org 2006-04-05 21:42 --- Testing a patch. -- tromey at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|u

[Bug middle-end/27050] error during kernel FreeBSD 5.4 compilation

2006-04-05 Thread dol at reedcat dot net
--- Comment #4 from dol at reedcat dot net 2006-04-05 21:48 --- Subject: RE: error during kernel FreeBSD 5.4 compilation Maybe you are right. This particular computer has only 32M of RAM. Maybe this could be the reason of this issue? dol@ > -Original Message- > From: rguent

[Bug libgcj/26625] libgcj-4.2.0.jar not rebuilt after a source file change

2006-04-05 Thread cvs-commit at developer dot classpath dot org
--- Comment #2 from cvs-commit at developer dot classpath dot org 2006-04-05 22:12 --- Subject: Bug 26625 CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Tom Tromey <[EMAIL PROTECTED]>06/04/05 22:12:01 Modified files: .

  1   2   >