[Bug tree-optimization/18438] vectorizer failed for vector matrix multiplication

2006-09-19 Thread irar at il dot ibm dot com
--- Comment #3 from irar at il dot ibm dot com 2006-09-19 07:10 --- t.c:20: note: not vectorized: mixed data-types t.c:20: note: can't determine vectorization factor. Removing flags[i] = true; Multiple data-types vectorization is already supported in the autovect branch, and the

[Bug tree-optimization/19049] not vectorizing a fortran loop

2006-09-19 Thread irar at il dot ibm dot com
--- Comment #7 from irar at il dot ibm dot com 2006-09-19 07:29 --- Even though vectorization of strided accesses is already implemented in the autovect branch (and will be committed to the mainline 4.3), this case contains a store with a gap (store to a[i] without a store to a[i-1]),

[Bug c++/29016] [4.2 Regression] tree check: expected class 'expression', have 'exceptional' (baselink) in get_base_var, at ipa-utils.c:224

2006-09-19 Thread micis at gmx dot de
--- Comment #8 from micis at gmx dot de 2006-09-19 08:17 --- The patch in comment #5 fixes the testcases but a make bootstrap ; make check (with only C/C++) results in two new regressions: WARNING: program timed out. FAIL: g++.dg/opt/pr24665.C (test for excess errors) FAIL:

[Bug ada/28953] Ada: Documentation for gprmake is missing

2006-09-19 Thread charlet at gcc dot gnu dot org
--- Comment #2 from charlet at gcc dot gnu dot org 2006-09-19 08:47 --- gprmake was a beta tool never documented, which probably should not have been put in the first place, so instead I'll likely remove it at some point, since in any case, gprmake does not really belong in the ada

[Bug c++/29136] New: using declaration misinterpreted in classes

2006-09-19 Thread andrew dot stubbs at st dot com
The following program should return 1 when executed: struct A { virtual int f() {return 1;} }; struct B : virtual A { virtual int f() {return 0;} }; struct C : B , virtual A { using A::f; }; int main () { C c; return c.f () + c.C::f (); } It actually returns 2. The C++ standard

[Bug c++/29136] using declaration misinterpreted in classes

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-09-19 09:41 --- This is a dup of bug 11750, it was not hard to find that bug. Anyways the problem here is that we still use mostly the old ARM style using semantics instead of the standard defined ones. *** This bug has been

[Bug c++/11750] Incorrect virtual method invoked for class hierarchy w/ virtual bases

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-09-19 09:41 --- *** Bug 29136 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/29097] !$ include 'omp_lib.h' does not work

2006-09-19 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jakub at gcc dot gnu dot org |dot org

[Bug c++/29138] New: access declarations don't work for classes

2006-09-19 Thread andrew dot stubbs at st dot com
class A { public: int i; class A1 { int j; }; }; class B : private A { public: A::i; A::A1; }; void f () { B b; b.i = 1; B::A1 a1; } The above program does not compile with the following messages: t.cpp:15: error: declaration does not declare anything t.cpp: In function

[Bug fortran/29101] Memory leak in gfortran

2006-09-19 Thread pault at gcc dot gnu dot org
--- Comment #9 from pault at gcc dot gnu dot org 2006-09-19 11:05 --- Subject: Bug 29101 Author: pault Date: Tue Sep 19 11:04:55 2006 New Revision: 117053 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=117053 Log: 2006-09-19 Paul Thomas [EMAIL PROTECTED] Steven

[Bug c/29129] [4.2 Regression] Strictly conforming code rejected

2006-09-19 Thread joseph at codesourcery dot com
--- Comment #2 from joseph at codesourcery dot com 2006-09-19 11:10 --- Subject: Re: New: Strictly conforming code rejected On Mon, 18 Sep 2006, neil at gcc dot gnu dot org wrote: Compile the following with -std=c99 -pedantic-errors void f(unsigned int [*]); foo.c:1: error:

[Bug ada/29127] gnatchop-gcc: installation problem, executable not found

2006-09-19 Thread schwab at suse dot de
--- Comment #5 from schwab at suse dot de 2006-09-19 11:19 --- Doesn't change anything either. I don't think this function is ever called anyway. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29127

[Bug fortran/29101] Memory leak in gfortran

2006-09-19 Thread pault at gcc dot gnu dot org
--- Comment #10 from pault at gcc dot gnu dot org 2006-09-19 11:24 --- Subject: Bug 29101 Author: pault Date: Tue Sep 19 11:24:44 2006 New Revision: 117054 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=117054 Log: 2006-09-19 Paul Thomas [EMAIL PROTECTED] Steven

[Bug fortran/29101] Memory leak in gfortran

2006-09-19 Thread pault at gcc dot gnu dot org
--- Comment #11 from pault at gcc dot gnu dot org 2006-09-19 11:26 --- Thanks to Steven's intervention, I can declare this bug well and truly closed. Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/28946] assembler shifts set the flag ZF, no need to re-test to zero

2006-09-19 Thread uros at kss-loka dot si
--- Comment #14 from uros at kss-loka dot si 2006-09-19 11:31 --- Fixed everywhere. -- uros at kss-loka dot si changed: What|Removed |Added Status|ASSIGNED

[Bug c++/29139] New: GCC produces wrong code with SSE / inline functions

2006-09-19 Thread jespdj at hotmail dot com
Output of gcc -v: Using built-in specs. Target: i686-pc-cygwin Configured with: ../../source/gcc-4.1.1/configure --enable-threads=posix --enable-languages=c,c++ --disable-win32-registry Thread model: posix gcc version 4.1.1 I wrote a Vector class that I wanted to optimize by using some inline

[Bug c++/29139] GCC produces wrong code with SSE / inline functions

2006-09-19 Thread jespdj at hotmail dot com
--- Comment #1 from jespdj at hotmail dot com 2006-09-19 11:33 --- Created an attachment (id=12294) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12294action=view) Source code that demonstrates the bug This is the source code that demonstrates bug 29139. --

[Bug c++/29139] GCC produces wrong code with SSE / inline functions

2006-09-19 Thread jespdj at hotmail dot com
--- Comment #2 from jespdj at hotmail dot com 2006-09-19 11:34 --- Created an attachment (id=12295) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12295action=view) Precompiled source (*.ii) Precompiled code for gccbug.cpp of bug 29139. --

[Bug fortran/29101] Memory leak in gfortran

2006-09-19 Thread paulthomas2 at wanadoo dot fr
--- Comment #12 from paulthomas2 at wanadoo dot fr 2006-09-19 11:56 --- Subject: Re: Memory leak in gfortran steven at gcc dot gnu dot org wrote: --- Comment #8 from steven at gcc dot gnu dot org 2006-09-18 22:35 --- Not fixed just yet. Steven, I put it to rights this

[Bug ada/28716] Ada: Bind_Socket doesn't bind to specified address

2006-09-19 Thread msimonides at power dot com dot pl
--- Comment #3 from msimonides at power dot com dot pl 2006-09-19 12:11 --- That's the solution we have applied. I've recompiled gnat-gpl-3.4.6 with your patch and it works as expected. Thanks. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28716

[Bug c/29140] New: optimization -O2/-O3/-Os generate wrong instruction order

2006-09-19 Thread mingqiao dot wu at gmail dot com
Hello, I'm using gcc-4.1.1, built into an EABI tool chain with glibc-2.4 and binutils-2.16.92. I have a Fixed-to-Float transition program shown as below. But it can only work with -O1 option. -O2/-O3/-Os are all failed. % cat CTL_Math.c typedef float CTLFLOAT; typedef int CTLFIXED; typedef int

[Bug c/29140] optimization -O2/-O3/-Os generate wrong instruction order

2006-09-19 Thread mingqiao dot wu at gmail dot com
--- Comment #1 from mingqiao dot wu at gmail dot com 2006-09-19 12:26 --- Created an attachment (id=12296) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12296action=view) compare the disassembly result clearly -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29140

[Bug c/29129] [4.2 Regression] Strictly conforming code rejected

2006-09-19 Thread neil at daikokuya dot co dot uk
--- Comment #3 from neil at daikokuya dot co dot uk 2006-09-19 13:04 --- Subject: Re: [4.2 Regression] Strictly conforming code rejected joseph at codesourcery dot com wrote:- foo.c:1: error: '[*]' not allowed in other than a declaration As the diagnostic indicates, unsigned

[Bug other/28230] -O2 -fwrapv miscompiles gcc, binutils, gzip.

2006-09-19 Thread pluto at agmk dot net
--- Comment #7 from pluto at agmk dot net 2006-09-19 13:08 --- and one more misscompiled program - gzip-1.3.5. this time 4.1.2 with -O2 -fwrapv produces wrong code. $ dd if=/dev/zero of=foo count=10 $ gzip foo $ gzip -d foo.gz $ gzip: foo.gz: invalid compressed data--format violated

[Bug target/28516] [4.2 regression] arm_unwind_emit_set, at config/arm/arm.c:15419 with -fexceptions

2006-09-19 Thread pbrook at gcc dot gnu dot org
--- Comment #15 from pbrook at gcc dot gnu dot org 2006-09-19 13:18 --- Subject: Bug 28516 Author: pbrook Date: Tue Sep 19 13:18:27 2006 New Revision: 117055 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=117055 Log: 2006-09-19 Paul Brook [EMAIL PROTECTED] PR

[Bug target/28516] [4.2 regression] arm_unwind_emit_set, at config/arm/arm.c:15419 with -fexceptions

2006-09-19 Thread pbrook at gcc dot gnu dot org
--- Comment #16 from pbrook at gcc dot gnu dot org 2006-09-19 13:19 --- Subject: Bug 28516 Author: pbrook Date: Tue Sep 19 13:19:24 2006 New Revision: 117056 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=117056 Log: 2006-09-19 Paul Brook [EMAIL PROTECTED] PR

[Bug target/28516] [4.2 regression] arm_unwind_emit_set, at config/arm/arm.c:15419 with -fexceptions

2006-09-19 Thread pbrook at gcc dot gnu dot org
--- Comment #17 from pbrook at gcc dot gnu dot org 2006-09-19 13:26 --- Fixed. -- pbrook at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug c++/29141] static constructors beyond 64k fail

2006-09-19 Thread joerg dot diederich at graffiti dot net
--- Comment #1 from joerg dot diederich at graffiti dot net 2006-09-19 13:28 --- Created an attachment (id=12297) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12297action=view) example source file -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29141

[Bug c++/29141] New: static constructors beyond 64k fail

2006-09-19 Thread joerg dot diederich at graffiti dot net
Contruction of global static objects fails while using flash adresses over 0x, e.g. for bootloader purposes. avr mcu hangs completly before main or even the called constructor itself. minimal gcc call: avr-c++ -c -mmcu=at90can128 -I. -I. -g -O0 -Wall -Wextra -Wshadow -Wpointer-arith

[Bug c++/29141] static constructors beyond 64k fail

2006-09-19 Thread joerg dot diederich at graffiti dot net
--- Comment #2 from joerg dot diederich at graffiti dot net 2006-09-19 13:36 --- thanks to joerg wunsch, additional information is already available. #ifdef L_ctors .section .init6,ax,@progbits .global __do_global_ctors __do_global_ctors: ldi r17,

[Bug target/15445] spurious dependency-violation warnings

2006-09-19 Thread tbm at cyrius dot com
--- Comment #4 from tbm at cyrius dot com 2006-09-19 14:36 --- (In reply to comment #3) This is partly a compiler problem, and partly a binutils problem. This bug exists to document the fact that gcc/gas don't handle dependency violation issues correctly in all instances. I don't

[Bug c/29140] optimization -O2/-O3/-Os generate wrong instruction order

2006-09-19 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-09-19 14:42 --- You are violating C aliasing rules here (try -Wstrict-aliasing): return *(CTLFLOAT*)bits; -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/29142] New: gfortran - incorrectly flags error on allocatable variable in TYPE declaration

2006-09-19 Thread dir at lanl dot gov
4.2.0 20060919 (experimental) -- Summary: gfortran - incorrectly flags error on allocatable variable in TYPE declaration Product: gcc Version: 4.2.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c++/29143] New: address-of overloaded function does not work in function call

2006-09-19 Thread andrew dot stubbs at st dot com
void f(int,int); void f(int,int,int); void g () { (f)(1,2,3); } gives: t.cpp: In function ‘void g()’: t.cpp:7: error: address of overloaded function with no contextual type information The C++ standard clause 13.3.1.1 says that '(f)(...)' is the same as '(f)(...)', but the latter works and

[Bug c/29144] New: Missing if-conversion. If-conversion dependent on operand order. Inconsistent if-conversion.

2006-09-19 Thread Hakon dot Bugge at scali dot com
Four ways of coding a conditional assignment yields 1 conditional move using gcc 3.4.5 20051201 (Red Hat 3.4.5-2). gcc 4.0.2 20051130 (Red Hat 4.0.2-14.EL4) produces none. IMHO, four cmov's should have been produced. I further expect all four functions to generates the exact same code. All

[Bug tree-optimization/29145] New: unsafe use of restrict qualifier

2006-09-19 Thread djg at cray dot com
In the test case below, GCC doesn't observe a non-restrict-qualified pointer being based on a restrict-qualified pointer. On i686-pc-linux-gnu, this program aborts when compiled with -O2 -msse -ftree-vectorize because the loop in function with_restrict is vectorized based on an unsafe alias

[Bug target/28490] [4.0/4.1 regression] ICE in ia64_expand_move, at config/ia64/ia64.c:1088

2006-09-19 Thread sje at gcc dot gnu dot org
--- Comment #19 from sje at gcc dot gnu dot org 2006-09-19 16:09 --- Subject: Bug 28490 Author: sje Date: Tue Sep 19 16:09:48 2006 New Revision: 117057 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=117057 Log: PR 28490 * config/ia64/ia64.c

[Bug target/26792] [4.2 Regression] need to use autoconf when using newly-added libgcc functions

2006-09-19 Thread howarth at nitro dot med dot uc dot edu
--- Comment #21 from howarth at nitro dot med dot uc dot edu 2006-09-19 16:11 --- Steve has checked in the changes to config/unwind_ipinfo.m4, so I believe all we need now is... Index: libjava/configure.ac === ---

[Bug fortran/29142] gfortran - incorrectly flags error on allocatable variable in TYPE declaration

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-09-19 16:41 --- This is an extension to both Fortran 90 and Fortran 95. It is part of Fortran 2003 though. Anyways this is a dup of bug 20541. *** This bug has been marked as a duplicate of 20541 *** -- pinskia at gcc dot

[Bug fortran/20541] TR 15581: ALLOCATABLE components

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #20 from pinskia at gcc dot gnu dot org 2006-09-19 16:41 --- *** Bug 29142 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/29145] unsafe use of restrict qualifier

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-09-19 16:43 --- Actually restrict is weird and you might be violating one of the rules for restrict, I always forget those rules and don't really understand them that well. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29145

[Bug bootstrap/25009] Bootstrap: Failure to build doc/gcc.info

2006-09-19 Thread falk at debian dot org
--- Comment #11 from falk at debian dot org 2006-09-19 17:38 --- No feedback for a long time, let's just close it. -- falk at debian dot org changed: What|Removed |Added

[Bug ada/28716] Ada: Bind_Socket doesn't bind to specified address

2006-09-19 Thread laurent at guerby dot net
--- Comment #4 from laurent at guerby dot net 2006-09-19 19:38 --- Patch posted. -- laurent at guerby dot net changed: What|Removed |Added URL|

[Bug middle-end/21990] Wrong code for 4.0 and head: Reload clobbers the frame pointer by using it as spill register without recognizing the clobbering

2006-09-19 Thread eweddington at cso dot atmel dot com
--- Comment #12 from eweddington at cso dot atmel dot com 2006-09-19 19:41 --- (In reply to comment #11) I just realized that the patch posted here had just posted had a = where should have been a for two comparisons. The patch on [EMAIL PROTECTED] is already correct. Bjoern,

[Bug ada/28733] GNAT crash while compiling Ada-2005 code

2006-09-19 Thread laurent at guerby dot net
--- Comment #5 from laurent at guerby dot net 2006-09-19 19:44 --- With gcc version 4.2.0 20060915 (experimental) $ gcc -c -gnat05 ada_3d-file_io-step_reader.adb ada_3d-file_io-step_reader.ads:84:04: this instantiation requires Ada_3d.System.Containers.Single_List (body)

[Bug ada/28394] Ada: Ambiguous call not detected when using dotted notation

2006-09-19 Thread laurent at guerby dot net
--- Comment #2 from laurent at guerby dot net 2006-09-19 20:00 --- Confirmed with gcc version 4.2.0 20060915 (experimental I think your analysis is correct, the compiler should issue an error on the first line. If it's not correct, I don't see how the compiler could generate a call to

[Bug middle-end/21990] Wrong code for 4.0 and head: Reload clobbers the frame pointer by using it as spill register without recognizing the clobbering

2006-09-19 Thread bjoern dot m dot haase at web dot de
--- Comment #13 from bjoern dot m dot haase at web dot de 2006-09-19 20:16 --- Hello Eric, IIRC, the bug never was really resolved. The true place to fix the issue was, IMO, the most dreaded source file of the entire GCC source tree: reload. My now quite old patch tried to fix the

[Bug middle-end/21990] Wrong code for 4.0 and head: Reload clobbers the frame pointer by using it as spill register without recognizing the clobbering

2006-09-19 Thread eweddington at cso dot atmel dot com
--- Comment #14 from eweddington at cso dot atmel dot com 2006-09-19 20:25 --- Thanks, Bjoern, for responding in detail. If this bug cannot be reproduced, can we go ahead and close this bug report? Eric -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21990

[Bug rtl-optimization/21299] [4.0/4.1/4.2 Regression] internal error on invalid asm statement

2006-09-19 Thread steven at gcc dot gnu dot org
--- Comment #9 from steven at gcc dot gnu dot org 2006-09-19 21:22 --- Subject: Bug 21299 Author: steven Date: Tue Sep 19 21:22:31 2006 New Revision: 117061 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=117061 Log: PR rtl-optimization/21299 * reload1.c (reload):

[Bug rtl-optimization/21299] [4.0/4.1 Regression] internal error on invalid asm statement

2006-09-19 Thread steven at gcc dot gnu dot org
--- Comment #10 from steven at gcc dot gnu dot org 2006-09-19 21:23 --- Fixed on trunk for GCC 4.2. -- steven at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/4520] cselib.c hash_rtx incorrectly hashes based on rtx address

2006-09-19 Thread sayle at gcc dot gnu dot org
--- Comment #12 from sayle at gcc dot gnu dot org 2006-09-19 21:25 --- Subject: Bug 4520 Author: sayle Date: Tue Sep 19 21:25:28 2006 New Revision: 117062 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=117062 Log: PR middle-end/4520 Backport from mainline

[Bug middle-end/29135] internal compiler error at cfgexpand.c:515

2006-09-19 Thread de at cs dot brown dot edu
--- Comment #3 from de at cs dot brown dot edu 2006-09-19 21:49 --- Subject: Re: internal compiler error at cfgexpand.c:515 It seems to still be a problem with 4.1.1 (released 20060511). Maybe this is a slightly different problem? If not, what version has fixed this? Or, how can I

[Bug ada/28394] Ada: Ambiguous call not detected when using dotted notation

2006-09-19 Thread laurent at guerby dot net
--- Comment #3 from laurent at guerby dot net 2006-09-19 21:52 --- Note: confirmed by an Ada 2005 expert, and this has been fixed by AdaCore so the patch will probably land in the FSF tree soon. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28394

[Bug target/19087] Overflowed address in dwarf debug line information

2006-09-19 Thread eweddington at cso dot atmel dot com
--- Comment #23 from eweddington at cso dot atmel dot com 2006-09-19 21:54 --- (In reply to comment #20) I suggest that this change should be accompanied by another indication in the output that tells the ELF/DWARF-2 consumer about the changed pointer size. Otherwise the consumer

[Bug middle-end/4520] cselib.c hash_rtx incorrectly hashes based on rtx address

2006-09-19 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Known to fail||4.1.1 4.0.3 Known to work||4.1.2

[Bug target/19087] Overflowed address in dwarf debug line information

2006-09-19 Thread dberlin at gcc dot gnu dot org
--- Comment #24 from dberlin at gcc dot gnu dot org 2006-09-20 00:00 --- You guys should be aware that dwarf2/3 has a field in the header of each dwarf compilation unit labeled address size that tells what the address size for that compilation unit is. If this is set to 4, you should

[Bug c/29140] optimization -O2/-O3/-Os generate wrong instruction order

2006-09-19 Thread mingqiao dot wu at gmail dot com
--- Comment #3 from mingqiao dot wu at gmail dot com 2006-09-20 01:22 --- (In reply to comment #2) You are violating C aliasing rules here (try -Wstrict-aliasing): return *(CTLFLOAT*)bits; Yes, -O2 turns on -fstrict-aliasing, and I saw many warnings like warning: dereferencing

[Bug fortran/19260] not required when splitting a token in continuation

2006-09-19 Thread patchapp at dberlin dot org
--- Comment #5 from patchapp at dberlin dot org 2006-09-20 02:45 --- Subject: Bug number PR19260 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-09/msg00854.html --

[Bug middle-end/29118] [4.2 Regression] Timeouts in libstdc++, libjava and libgomp testsuites

2006-09-19 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Comment #3 from dave at hiauly1 dot hia dot nrc dot ca 2006-09-20 03:16 --- Subject: Re: [4.2 Regression] Timeouts in libstdc++, libjava and libgomp testsuites The patch which I am thinking might had caused this is: 2006-09-13 Andreas Krebbel [EMAIL PROTECTED] *

[Bug middle-end/29118] [4.2 Regression] Timeouts in libstdc++, libjava and libgomp testsuites

2006-09-19 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Comment #4 from dave at hiauly1 dot hia dot nrc dot ca 2006-09-20 03:19 --- Subject: Re: Timeouts in libstdc++, libjava and libgomp testsuites Does hppa-linux-gnu use dwarf2 eh info? It uses the dwarf2 unwind info. So, does hpux which doesn't appear affected. The same

[Bug target/19087] Overflowed address in dwarf debug line information

2006-09-19 Thread eweddington at cso dot atmel dot com
--- Comment #25 from eweddington at cso dot atmel dot com 2006-09-20 03:38 --- (In reply to comment #24) i'm not sure why you think you need an extra note. Because we weren't aware of the information that you thoughtfully laid out and put in this bug report? :-) Thank you very much

[Bug fortran/19654] compilation crashes when variable is too large instead of showing error

2006-09-19 Thread jvdelisle at gcc dot gnu dot org
--- Comment #5 from jvdelisle at gcc dot gnu dot org 2006-09-20 03:48 --- I think this is fixed. If I increase the size of the parameter I get the expected error message. program kk implicit none integer, parameter :: N=65535, M=N/2-1 real, dimension(N,N):: input call

[Bug libstdc++/29118] [4.2 Regression] Timeouts in libstdc++, libjava and libgomp testsuites

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-09-20 04:40 --- http://gcc.gnu.org/viewcvs?view=revrevision=116942 This is why I mentioned some of the libstdc++ changes should not be going in. -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug libfortran/29121] CPU_TIME subroutine missing for REAL(kind=10) argument

2006-09-19 Thread jvdelisle at gcc dot gnu dot org
--- Comment #2 from jvdelisle at gcc dot gnu dot org 2006-09-20 04:47 --- Confirmed -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/29140] optimization -O2/-O3/-Os generate wrong instruction order

2006-09-19 Thread mingqiao dot wu at gmail dot com
--- Comment #4 from mingqiao dot wu at gmail dot com 2006-09-20 04:48 --- After checking gcc manual, I found union can be used to do this conversion. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29140

[Bug c/29140] optimization -O2/-O3/-Os generate wrong instruction order

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-09-20 04:49 --- (In reply to comment #4) After checking gcc manual, I found union can be used to do this conversion. You can also use memcpy which is slightly more portable. --

[Bug middle-end/29135] internal compiler error at cfgexpand.c:515

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-09-20 04:56 --- [EMAIL PROTECTED] ~]$ ~/gcc-4.1/bin/gcc t.i -v Using built-in specs. Target: i686-pc-linux-gnu Configured with: /home/pinskia/src/gcc/gcc-4.1/gcc/configure --prefix=/home/pinskia/gcc-4.1/ Thread model: posix gcc

[Bug fortran/19261] continuation character illegal as first non-blank character in statement

2006-09-19 Thread jvdelisle at gcc dot gnu dot org
-- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jvdelisle at gcc dot gnu dot |dot org

[Bug fortran/19262] more than thirty-nine continuation lines should issue a std-warn

2006-09-19 Thread jvdelisle at gcc dot gnu dot org
-- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jvdelisle at gcc dot gnu dot |dot org

[Bug debug/29146] New: Gcc generates DWARF3 DW_FORM_ref_addr in DWARF2 info

2006-09-19 Thread hjl at lucon dot org
DW_FORM_ref_addr uses address size in DWARF2, but uses offset size in DWARF3. The current linker can only handle DWARF2 info. It looks like gcc generates DWARF3 DW_FORM_ref_addr while marking debug info as DWARF2. See http://sourceware.org/bugzilla/show_bug.cgi?id=3191 -- Summary:

[Bug debug/29146] Gcc generates DWARF3 DW_FORM_ref_addr in DWARF2 info

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-09-20 05:48 --- http://www.sourceware.org/ml/gdb/2001-06/msg00111.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29146

[Bug debug/29146] Gcc generates DWARF3 DW_FORM_ref_addr in DWARF2 info

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-09-20 05:51 --- http://gcc.gnu.org/ml/gcc-patches/2006-07/msg00030.html Hmm -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29146

[Bug debug/29146] Gcc generates DWARF3 DW_FORM_ref_addr in DWARF2 info

2006-09-19 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-09-20 05:56 --- (In reply to comment #0) DW_FORM_ref_addr uses address size in DWARF2, but uses offset size in DWARF3. The current linker can only handle DWARF2 info. It looks like gcc generates DWARF3 DW_FORM_ref_addr while