Suggestion for GCC (C C++) enhancement - static variable initialisation ordering

2006-04-29 Thread Manfred von Willich
Any interested GCC maintainers/contributors: I have a suggestion for GCC to eliminate a pernicious problem - that of automatically initialising static (i.e. long-lived) variables in the correct order based on mutual dependencies, apparently not normally addressed by compilers. This is a

- LeGeNdOfHyIp -

2006-04-29 Thread new hot just started
new hyip paid me Referral plz join and paid under me :) http://legendofhyip.com/?ref=mazika

The Linux binutils 2.17.50.0.1 is released

2006-04-29 Thread H. J. Lu
This is the beta release of binutils 2.17.50.0.1 for Linux, which is based on binutils 2006 0427 in CVS on sources.redhat.com plus various changes. It is purely for Linux. The new x86_64 assembler no longer accepts monitor %eax,%ecx,%edx You should use monitor %rax,%ecx,%edx

gcc-4.2-20060429 is now available

2006-04-29 Thread gccadmin
Snapshot gcc-4.2-20060429 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.2-20060429/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.2 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/trunk

Re: Summer of Code: proposal to participate with Partial Transitions

2006-04-29 Thread Eder L. Marques
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dan Kegel wrote: You might want to start by picking just one of the Partial Transitions tasks and trying to work on it, even before submitting a proposal; that will help you write a better proposal... Its a good idea Dan. :) May be I can start

Re: Summer of Code: proposal to participate with Partial Transitions

2006-04-29 Thread Dan Kegel
On 4/29/06, Eder L. Marques [EMAIL PROTECTED] wrote: You might want to start by picking just one of the Partial Transitions tasks and trying to work on it, even before submitting a proposal; that will help you write a better proposal... Its a good idea Dan. :) May be I can start with

ARM gcc 4.1 optimization bug.

2006-04-29 Thread Fengwei Yin
Hi, I am using gcc4.1 for ARM to build Linux kernel. But there is a bug related to the gcc optimization. I assume this is correct mail list to report this bug. If not, please let me know. And I didn't find the same bug reported too. The kernel is 2.6.14. When I build ALSA subsystem. I use

[Bug c++/27316] [4.0/4.1/4.2 Regression] ICE with two ill-placed expression

2006-04-29 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.5 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27316

[Bug fortran/27351] Use variable after free in gfc_conv_array_transpose

2006-04-29 Thread steven at gcc dot gnu dot org
-- steven at gcc dot gnu dot org changed: What|Removed |Added URL||http://gcc.gnu.org/ml/gcc- |

[Bug c++/27356] New: Right read operator not accessible after overloading.

2006-04-29 Thread pfl at iis dot fhg dot de
When compiling the following program with the shipped gcc 4.0.1 from XCode 2.2 on an Apple iMac, the result is: Mac:~/Desktop pfeil$ ./bugdemo write write write write true but should be: write read write read true Or in other words, the compiler should use the read/const version of the

[Bug c/27357] New: 20 % increase code size in 4.1 vs 3.4.5, tail return optimisation

2006-04-29 Thread etienne_lorrain at yahoo dot fr
Here is a 20 % increase code size, because the compiler tries too much to jump to UI_plotHline() instead of just calling the function and then doing a standard return at the end of drawbutton()... [EMAIL PROTECTED] projet]$ cat tmp.c typedef struct { unsigned short x, y;/* x should

[Bug fortran/27351] Use variable after free in gfc_conv_array_transpose

2006-04-29 Thread hjl at gcc dot gnu dot org
--- Comment #12 from hjl at gcc dot gnu dot org 2006-04-29 14:25 --- Subject: Bug 27351 Author: hjl Date: Sat Apr 29 14:25:42 2006 New Revision: 113375 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113375 Log: 2006-04-29 H.J. Lu [EMAIL PROTECTED] PR fortran/27351

[Bug fortran/27351] Use variable after free in gfc_conv_array_transpose

2006-04-29 Thread hjl at lucon dot org
--- Comment #13 from hjl at lucon dot org 2006-04-29 14:45 --- Fixed. -- hjl at lucon dot org changed: What|Removed |Added Status|NEW

[Bug c++/27315] [4.0/4.1/4.2 regression] ICE with ill-placed expression

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #4 from reichelt at gcc dot gnu dot org 2006-04-29 14:56 --- It doesn't ICE before 3.4.0 even with checking enabled. It's a regression then. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/27329] [4.0/4.1/4.2 Regression] ICE with misplaced expression

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #5 from reichelt at gcc dot gnu dot org 2006-04-29 15:01 --- It happens also on the 4.0 branch since GCC 4.0.3. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

- LeGeNdOfHyIp -

2006-04-29 Thread new hot just started
new hyip paid me Referral plz join and paid under me :) http://legendofhyip.com/?ref=mazika

[Bug c++/27356] Right read operator not accessible after overloading.

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-04-29 16:13 --- Try: Array a; const Array b = a; a[ 0 ] = true; a[ 1 ] = b[ 0 ]; But this is invalid, a[0] is always an lvalue. -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug libfortran/26985] incorrect matmul result

2006-04-29 Thread tkoenig at gcc dot gnu dot org
--- Comment #4 from tkoenig at gcc dot gnu dot org 2006-04-29 16:30 --- Hi FX, would you care to replace rystride == ycount with rystride == xcount as a fix for this, independent of the matmul BLAS issue? I think this is definitely worth it, especially for 4.1. Pre-approved if you do

[Bug fortran/25681] ICE with len of array of derived type

2006-04-29 Thread fxcoudert at gcc dot gnu dot org
--- Comment #10 from fxcoudert at gcc dot gnu dot org 2006-04-29 16:31 --- Subject: Bug 25681 Author: fxcoudert Date: Sat Apr 29 16:31:26 2006 New Revision: 113376 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113376 Log: PR fortran/25681 * simplify.c

[Bug fortran/25681] [4.0 only] ICE with len of array of derived type

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

[Bug c/27358] New: ICE with invalid variable after #pragma omp parallel

2006-04-29 Thread reichelt at gcc dot gnu dot org
The following invalid testcase crashes the C frontend with -fopenmp: === void foo(ERROR i) { #pragma omp parallel i=0; } === bug.c:1: error: expected ')' before 'i' bug.c:3: internal compiler error: in c_parser_consume_token, at c-parser.c:639 Please

[Bug c++/27359] New: ICE with missing initialization of iteration variable in parallel for loop

2006-04-29 Thread reichelt at gcc dot gnu dot org
The following invalid testcase crashes the C++ frontend when compiled with -fopenmp: == void foo() { #pragma omp parallel for for (int i; i1; ++i) ; } == bug.cc: In function 'void foo()': bug.cc:4: internal compiler error: vector

[Bug c++/27279] [4.0/4.1/4.2 regression] ICE with invalid constructor declaration

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #2 from reichelt at gcc dot gnu dot org 2006-04-29 20:48 --- Subject: Bug 27279 Author: reichelt Date: Sat Apr 29 20:48:45 2006 New Revision: 113378 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113378 Log: PR c++/27279 * decl.c (copy_fn_p): Skip

[Bug c++/27279] [4.0/4.1/4.2 regression] ICE with invalid constructor declaration

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #3 from reichelt at gcc dot gnu dot org 2006-04-29 20:52 --- Subject: Bug 27279 Author: reichelt Date: Sat Apr 29 20:52:24 2006 New Revision: 113379 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113379 Log: PR c++/27279 * decl.c (copy_fn_p): Skip

[Bug c++/27279] [4.0/4.1/4.2 regression] ICE with invalid constructor declaration

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #4 from reichelt at gcc dot gnu dot org 2006-04-29 20:55 --- Subject: Bug 27279 Author: reichelt Date: Sat Apr 29 20:55:44 2006 New Revision: 113380 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113380 Log: PR c++/27279 * decl.c (copy_fn_p): Skip

[Bug c++/27279] [4.0/4.1/4.2 regression] ICE with invalid constructor declaration

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #5 from reichelt at gcc dot gnu dot org 2006-04-29 20:57 --- Fixed on mainline, 4.1 branch, and 4.0 branch. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/27279] [4.0/4.1/4.2 regression] ICE with invalid constructor declaration

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #6 from reichelt at gcc dot gnu dot org 2006-04-29 20:57 --- Really fixed. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/26017] allocate (a(1:-1)) should yield zero-sized array

2006-04-29 Thread tkoenig at gcc dot gnu dot org
--- Comment #7 from tkoenig at gcc dot gnu dot org 2006-04-29 21:02 --- Subject: Bug 26017 Author: tkoenig Date: Sat Apr 29 21:02:04 2006 New Revision: 113381 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113381 Log: 2006-04-29 Thomas Koenig [EMAIL PROTECTED] PR

[Bug fortran/26017] allocate (a(1:-1)) should yield zero-sized array

2006-04-29 Thread tkoenig at gcc dot gnu dot org
--- Comment #8 from tkoenig at gcc dot gnu dot org 2006-04-29 21:05 --- Fixed on 4.1 and trunk. Closing. -- tkoenig at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/27102] [4.0/4.1 regression] ICE with invalid class name in function template

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #12 from reichelt at gcc dot gnu dot org 2006-04-29 21:40 --- Subject: Bug 27102 Author: reichelt Date: Sat Apr 29 21:39:54 2006 New Revision: 113382 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113382 Log: PR c++/11471 PR c++/27102 *

[Bug c++/11471] ICE on illegal use of typedef'd member class

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #7 from reichelt at gcc dot gnu dot org 2006-04-29 21:40 --- Subject: Bug 11471 Author: reichelt Date: Sat Apr 29 21:39:54 2006 New Revision: 113382 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113382 Log: PR c++/11471 PR c++/27102 *

[Bug c++/11471] ICE on illegal use of typedef'd member class

2006-04-29 Thread reichelt at gcc dot gnu dot org
--- Comment #8 from reichelt at gcc dot gnu dot org 2006-04-29 21:49 --- This has been fixed in mainline by Mark's patch fro PR27102. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/26628] Build fails trying to run ppc64 binaries on powerpc-apple-darwin8.5.0

2006-04-29 Thread jazzmantitus at yahoo dot com
--- Comment #3 from jazzmantitus at yahoo dot com 2006-04-29 23:18 --- Just wasted a day or so on this as well. Sure seems like a bug to me. Why should it auto-detect which CPU it is building upon and then attempt to build a compiler that is guaranteed to break? Does it attempt to

[Bug libfortran/27360] New: Memory leaks when reading logicals

2006-04-29 Thread eedelman at gcc dot gnu dot org
It seems that the io library is leaking memory when reading logicals, as demonstrated by the small program below; when running, the program uses more and more memory until it's killed. I don't see this behaviour with data types other than logicals. erik:/var/tmp$ cat memoryleak.f90 program

[Bug libfortran/27360] Memory leaks when reading logicals

2006-04-29 Thread jvdelisle at gcc dot gnu dot org
--- Comment #1 from jvdelisle at gcc dot gnu dot org 2006-04-30 00:12 --- I will look into this. Thought we had them all, but maybe not. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27360

[Bug libfortran/27360] Memory leaks when reading logicals

2006-04-29 Thread jvdelisle at gcc dot gnu dot org
--- Comment #2 from jvdelisle at gcc dot gnu dot org 2006-04-30 01:15 --- Confirmed and i found the spot in read_logical. I will have a fix shortly. My bad on this one. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/27361] New: FAIL: gfortran.dg/enum_2.f90 -O (test for excess errors)

2006-04-29 Thread danglin at gcc dot gnu dot org
Executing on host: /home/dave/gcc-4.2/objdir/gcc/testsuite/gfortran/../../gfortr an -B/home/dave/gcc-4.2/objdir/gcc/testsuite/gfortran/../../ /home/dave/gcc-4.2/ gcc/gcc/testsuite/gfortran.dg/enum_2.f90 -O -pedantic-errors -S -o enum_2.s (timeout = 300) In file

[Bug ada/27225] Wide_String slice assignment in nested procedure does not work properly

2006-04-29 Thread bauhaus at futureapps dot de
--- Comment #3 from bauhaus at futureapps dot de 2006-04-30 02:35 --- One more that doesn't work: result(txt'first .. txt'first + 3) := ('x', 'x', 'x', 'x'); These rewritten assignments do work as expected result(txt'first .. txt'first + 3) := (1 .. 4 = 'x');

[Bug awt/16005] GridBagLayout resizes components incorrectly when weigthy value is set

2006-04-29 Thread sven at physto dot se
--- Comment #2 from sven at physto dot se 2006-04-30 02:56 --- Is this fixed now? I can't quite see what the problem is with the test program? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16005

[Bug libfortran/27360] Memory leaks when reading logicals

2006-04-29 Thread jvdelisle at gcc dot gnu dot org
--- Comment #3 from jvdelisle at gcc dot gnu dot org 2006-04-30 03:19 --- Subject: Bug 27360 Author: jvdelisle Date: Sun Apr 30 03:19:37 2006 New Revision: 113388 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113388 Log: 2006-04-29 Jerry DeLisle [EMAIL PROTECTED] PR

[Bug libfortran/27360] Memory leaks when reading logicals

2006-04-29 Thread patchapp at dberlin dot org
--- Comment #4 from patchapp at dberlin dot org 2006-04-30 03:20 --- Subject: Bug number PR27360 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/msg01152.html --

[Bug c/27267] Problems with creal in gcc 4.0.0 and 4.0.1

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-04-30 04:03 --- These two testcases work for me on powerpc-darwin with Apple's GCC. The testcase looked like: #include complex.h #include stdio.h int main(void) { printf(\n %f,creal(cpow(I,I))); } -- pinskia at gcc dot gnu

[Bug c/27358] ICE with invalid variable after #pragma omp parallel

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-04-30 04:06 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/27359] ICE with missing initialization of iteration variable in parallel for loop

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-04-30 04:07 --- Confirmed, works in C99 mode: pc64:~ ~/newtest/bin/gcc t.c -fopenmp -std=c99 t.c: In function ‘foo’: t.c:5: error: ‘i’ is not initialized -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug c++/26788] optimization of expression templates not as performant as g++ 4.0.2

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #11 from pinskia at gcc dot gnu dot org 2006-04-30 04:11 --- (In reply to comment #9) But that only applies to 4.2 and not 4.1.0. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libstdc++/26810] error when building cross-compiler

2006-04-29 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |WAITING http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26810

[Bug target/26775] a stack pointer is not recovered correctly when using alloca.

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2006-04-30 04:12 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug libstdc++/26825] bad allocation while adding new elements to vector

2006-04-29 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |WAITING http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26825

[Bug ada/26870] gnat-3.45 fails to compile

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-04-30 04:19 --- This works for me in 4.0.2. If 3.4.5 crashes then there is nothing we can do as 3.4.x is no longer being supported. -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug middle-end/26784] Non C based frontend ICEs on -fmudflap

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-04-30 04:21 --- Actually this is not a bug in the front-end but rather with -fmudflap causing the crash and saying it is not supported for any language except for C based ones. -- pinskia at gcc dot gnu dot org changed:

[Bug target/26883] ICE when assigning memory attribute to class with simple constructor

2006-04-29 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last

[Bug libgcj/26858] NullPointerException not generated for large classes...

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #10 from pinskia at gcc dot gnu dot org 2006-04-30 04:24 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/27334] [4.0/4.1 onlly] gcc/Makefile.in:s-macro_list sed fails with make 3.81 due to POSIX support changes

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-04-30 04:28 --- *** This bug has been marked as a duplicate of 26764 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/26764] sed command garbled when generating macro_list

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-04-30 04:28 --- *** Bug 27334 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/26764] [4.0/4.1 only] sed command garbled when generating macro_list

2006-04-29 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 GCC build

[Bug c/27363] New: ARM gcc 4.1 optimization bug

2006-04-29 Thread nh26223 at yahoo dot com dot cn
The kernel is 2.6.14. When I build ALSA subsystem. I use following commandline: arm-iwmmxt-linux-gnueabi-gcc -Wp,-MD,sound/core/.pcm_native.o.d -nostdinc -isystem /usr/local/arm-iwmmxt-linux-gnueabi/bin/../lib/gcc/arm-iwmmxt-linux-gnueabi/4.1.0/include -D__KERNEL__ -Iinclude -include

[Bug target/27363] ARM gcc 4.1 optimization bug

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-04-30 05:01 --- We really need a self contianed example but I think this was already fixed for 4.1.1. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/27363] ARM gcc 4.1 optimization bug

2006-04-29 Thread yfw dot debian at gmail dot com
--- Comment #2 from yfw dot debian at gmail dot com 2006-04-30 05:09 --- Subject: Re: ARM gcc 4.1 optimization bug Hi pinskia, I tried to make a simple test example for this bug. But If I put the code from ALSA subsystem of Linux kernel to a test.c file, the gcc will product correct

[Bug target/27363] ARM gcc 4.1 optimization bug

2006-04-29 Thread yfw dot debian at gmail dot com
--- Comment #3 from yfw dot debian at gmail dot com 2006-04-30 05:32 --- Where can I get gcc 4.1.1? From the ftp site, the latest gcc 4.1 release is 4.1.0. Thanks. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27363

[Bug tree-optimization/27335] [4.0/4.1/4.2 regression] ICE in get_loop_body

2006-04-29 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-04-30 05:55 --- -O1 -funroll-loops crashes on the mainline (though -O2 -funroll-loops passes). -- pinskia at gcc dot gnu dot org changed: What|Removed |Added