[Bug middle-end/28796] __builtin_nan() and __builtin_unordered() inconsistent

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #22 from rguenth at gcc dot gnu dot org 2006-11-06 09:33 --- Subject: Bug 28796 Author: rguenth Date: Mon Nov 6 09:33:16 2006 New Revision: 118517 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118517 Log: 2006-11-06 Richard Guenther [EMAIL PROTECTED]

[Bug target/19116] -funsafe-math-optimizations make nan compares equal to one another (-finite-math-only should be doing that)

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #18 from rguenth at gcc dot gnu dot org 2006-11-06 09:33 --- Subject: Bug 19116 Author: rguenth Date: Mon Nov 6 09:33:16 2006 New Revision: 118517 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118517 Log: 2006-11-06 Richard Guenther [EMAIL PROTECTED]

[Bug target/19116] -funsafe-math-optimizations make nan compares equal to one another (-finite-math-only should be doing that)

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #19 from rguenth at gcc dot gnu dot org 2006-11-06 09:34 --- Fixed for 4.2.0. The RM decided it's not worth the change in behavior during the 4.1/4.0 series (I agree). -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/28752] bootstrap comparision fails with -ftree-vectorize -maltivec on ppc

2006-11-06 Thread irar at il dot ibm dot com
--- Comment #7 from irar at il dot ibm dot com 2006-11-06 09:38 --- Janis - thanks a lot for your help! http://gcc.gnu.org/viewcvs?view=revrev=110705 r110705 | law | 2006-02-07 18:31:27 + (Tue, 07 Feb 2006) In r110704 bootstrap passes with and w/o vectorization enabled, and in

[Bug testsuite/29737] make check fixinclude test FAILURES

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2006-11-06 10:43 --- glibc version? -- rguenth at gcc dot gnu dot org changed: What|Removed |Added CC|

[Bug tree-optimization/29738] New: Missed constant propagation into loops

2006-11-06 Thread rguenth at gcc dot gnu dot org
For the following testcase int i; void foo (void); void bar (void) { int j; i = 0; for (j = 0; j 1; j++) if (i) foo (); } we cannot see that foo is never called and so the loop is empty. The problem is that i is part of the loop evolution and so appears in a PHI node so we

[Bug libstdc++/29722] Linking with libsupc++.a creates link time undefined references

2006-11-06 Thread bkoz at gcc dot gnu dot org
-- bkoz at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |bkoz at gcc dot gnu dot org |dot org

[Bug libstdc++/29722] Linking with libsupc++.a creates link time undefined references

2006-11-06 Thread bkoz at gcc dot gnu dot org
--- Comment #2 from bkoz at gcc dot gnu dot org 2006-11-06 11:11 --- I'm on it. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29722

[Bug libstdc++/16006] Conversions of numbers in fi_FI.UTF-8 produces incorrect UTF-8

2006-11-06 Thread bkoz at gcc dot gnu dot org
-- bkoz at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |bkoz at gcc dot gnu dot org |dot org

[Bug tree-optimization/29122] ICE with -ipa-cp and -m64 (tail calls)

2006-11-06 Thread patchapp at dberlin dot org
--- Comment #7 from patchapp at dberlin dot org 2006-11-06 11:40 --- Subject: Bug number PR29122 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-11/msg00305.html --

[Bug tree-optimization/29738] Missed constant propagation into loops

2006-11-06 Thread sebastian dot pop at cri dot ensmp dot fr
--- Comment #1 from sebastian dot pop at cri dot ensmp dot fr 2006-11-06 11:48 --- Subject: Re: Missed constant propagation into loops I think the problem is that i is a global variable and thus foo is potentially considered as modifying i. Have you tried void foo (void); void bar

[Bug tree-optimization/29738] Missed constant propagation into loops

2006-11-06 Thread rakdver at gcc dot gnu dot org
--- Comment #2 from rakdver at gcc dot gnu dot org 2006-11-06 11:51 --- Have you tried void foo (void); void bar (void) { int i, j; i = 0; for (j = 0; j 1; j++) if (i) foo (); } This would work, obviously. For the original problem, why don't we

[Bug tree-optimization/29738] Missed constant propagation into loops

2006-11-06 Thread rguenther at suse dot de
--- Comment #3 from rguenther at suse dot de 2006-11-06 12:04 --- Subject: Re: Missed constant propagation into loops On Mon, 6 Nov 2006, rakdver at gcc dot gnu dot org wrote: --- Comment #2 from rakdver at gcc dot gnu dot org 2006-11-06 11:51 --- Have you tried

[Bug tree-optimization/29738] Missed constant propagation into loops

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2006-11-06 12:07 --- Btw, store_ccp should catch the propagation to the PHI node, but somehow it doesn't. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29738

[Bug tree-optimization/29738] Missed constant propagation into loops

2006-11-06 Thread rakdver at atrey dot karlin dot mff dot cuni dot cz
--- Comment #5 from rakdver at atrey dot karlin dot mff dot cuni dot cz 2006-11-06 12:08 --- Subject: Re: Missed constant propagation into loops --- Comment #2 from rakdver at gcc dot gnu dot org 2006-11-06 11:51 --- Have you tried void foo (void); void bar

[Bug tree-optimization/29738] Missed constant propagation into loops

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #6 from rguenth at gcc dot gnu dot org 2006-11-06 12:18 --- But obviously for real operands, foo () won't clobber them. I.e. the following also could be optimized but is not: void foo (int *); void bar (void) { int j; int i; i = 0; for (j = 0; j 1; j++) if

[Bug other/29639] [4.3 regression] ext/bitmap_allocator/check_allocate_max_size.cc execution test

2006-11-06 Thread ebotcazou at gcc dot gnu dot org
--- Comment #28 from ebotcazou at gcc dot gnu dot org 2006-11-06 12:25 --- OK, thanks. I'll try harder to reproduce on x86/Linux. This is getting annoying. I've built a first C++ compiler --with-as --with-ld set to the new binutils, installed it, then built a second C++ compiler

[Bug tree-optimization/29738] Missed constant propagation into loops

2006-11-06 Thread rakdver at atrey dot karlin dot mff dot cuni dot cz
--- Comment #7 from rakdver at atrey dot karlin dot mff dot cuni dot cz 2006-11-06 12:33 --- Subject: Re: Missed constant propagation into loops But obviously for real operands, foo () won't clobber them. I.e. the following also could be optimized but is not: void foo (int

[Bug tree-optimization/29738] Missed constant propagation into loops

2006-11-06 Thread rguenther at suse dot de
--- Comment #8 from rguenther at suse dot de 2006-11-06 12:37 --- Subject: Re: Missed constant propagation into loops On Mon, 6 Nov 2006, rakdver at atrey dot karlin dot mff dot cuni dot cz wrote: --- Comment #7 from rakdver at atrey dot karlin dot mff dot cuni dot cz

[Bug c/29739] New: -Wconversion produces invalid warnings.

2006-11-06 Thread jaco at kroon dot co dot za
Hi guys, The following snippet of code should not produce a warning as far as I understand: int foo(short bar) { return bar; } int main() { short d = 0; return foo(d); } Unfortunately, however, I get this when I try to compile this code: [EMAIL PROTECTED] ~/src $ gcc -Wconversion -o foo

[Bug c/29739] -Wconversion produces invalid warnings.

2006-11-06 Thread schwab at suse dot de
--- Comment #1 from schwab at suse dot de 2006-11-06 13:55 --- The warning works as intended. *** This bug has been marked as a duplicate of 6614 *** -- schwab at suse dot de changed: What|Removed |Added

[Bug c/6614] [-Wconversion] incorrect conversion warning for function taking a short

2006-11-06 Thread schwab at suse dot de
--- Comment #10 from schwab at suse dot de 2006-11-06 13:55 --- *** Bug 29739 has been marked as a duplicate of this bug. *** -- schwab at suse dot de changed: What|Removed |Added

[Bug tree-optimization/29740] New: [4.1 Regression] ICE in find_or_generate_expression, at tree-ssa-pre.c:1472

2006-11-06 Thread rguenth at gcc dot gnu dot org
Compile with -O2. double lap_discrete[3][3][3]; void create_laplacian (double **phi, unsigned long *nvox, unsigned *ext) { unsigned indx, indy, indz; for (indz=0; indz*ext; indz++) for (indy=0; indy*ext; indy++) for (indx=0; indx*ext; indx++)

[Bug tree-optimization/29740] [4.1 Regression] ICE in find_or_generate_expression, at tree-ssa-pre.c:1472

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2006-11-06 14:58 --- #1 0x008aad40 in find_or_generate_expression (block=0x2b50ce8c4c80, expr=0x2b50ce8d9210, stmts=0x2b50ce8d9ab0) at /space//rguenther/src/svn/gcc-4_1-branch/gcc/tree-ssa-pre.c:1468 1468

[Bug tree-optimization/29680] [4.3 Regression] Misscompilation of spec2006 gcc

2006-11-06 Thread hjl at lucon dot org
--- Comment #14 from hjl at lucon dot org 2006-11-06 15:12 --- I checked gcc 4.3. The same source code, which is miscompiled in gcc from SPEC CPU 2006, is there. It is most likely that gcc 4.3 is also miscompiled and now generating wrong unwind/debug info, if not wrong instructions.

[Bug tree-optimization/28545] [4.1 Regression] Wrong code for hoisted multiplication

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #16 from rguenth at gcc dot gnu dot org 2006-11-06 15:15 --- *** Bug 29740 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28545

[Bug tree-optimization/29740] [4.1 Regression] ICE in find_or_generate_expression, at tree-ssa-pre.c:1472

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-11-06 15:15 --- Actually, this is a dup of 28545. *** This bug has been marked as a duplicate of 28545 *** -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/28545] [4.1 Regression] Wrong code for hoisted multiplication

2006-11-06 Thread rguenth at gcc dot gnu dot org
--- Comment #17 from rguenth at gcc dot gnu dot org 2006-11-06 15:17 --- pinskia: ping! (whole distro-rebuild with that patch ok for {x86_64,i686,ppc,ppc64,ia64,s390,s390x}-linux) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28545

[Bug bootstrap/29741] New: Fails to build bootstrap under solaris 10, i386

2006-11-06 Thread nick dot kings at bt dot com
Bootstrap build fails. Operating system: uname -a SunOS malta.info.bt.co.uk 5.10 Generic_118844-26 i86pc i386 i86pc pwd /export/space/applications/install-files/gcc-4.1.1/objdir Sequence used: a) Create a temporary object directory b) ../configure --enable-shared c) make bootstrap - fails

Re: [Bug tree-optimization/29680] [4.3 Regression] Misscompilation of spec2006 gcc

2006-11-06 Thread Daniel Berlin
Zdenek, can you revert your patch until we fix this? It might be a month or two before i get back to it. (Yeah, i know it sucks to have to do this, but) On 6 Nov 2006 15:12:30 -, hjl at lucon dot org [EMAIL PROTECTED] wrote: --- Comment #14 from hjl at lucon dot org 2006-11-06

[Bug tree-optimization/29680] [4.3 Regression] Misscompilation of spec2006 gcc

2006-11-06 Thread dberlin at dberlin dot org
--- Comment #15 from dberlin at gcc dot gnu dot org 2006-11-06 16:28 --- Subject: Re: [4.3 Regression] Misscompilation of spec2006 gcc Zdenek, can you revert your patch until we fix this? It might be a month or two before i get back to it. (Yeah, i know it sucks to have to do this,

[Bug c/29739] -Wconversion produces invalid warnings.

2006-11-06 Thread lopezibanez at gmail dot com
--- Comment #2 from lopezibanez at gmail dot com 2006-11-06 16:30 --- (a bit more explanation won't hurt) The GCC documentation says: -Wconversion: Warn if a prototype causes a type conversion that is different from what would happen to the same argument in the absence of a

[Bug c/29739] -Wconversion produces invalid warnings.

2006-11-06 Thread jaco at kroon dot co dot za
--- Comment #3 from jaco at kroon dot co dot za 2006-11-06 16:46 --- Awesome. That would be a good move. The implicit conversions are very handy for catching certain types of bugs early one, however, the function prototype thing is a pain. Unfortunately I won't be able to assist with

[Bug fortran/27701] Two routines with the same name cause an interna; error in gfortran

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #7 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 27701 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29211] ICE in FORALL character assignment with dependences

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 29211 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29232] No warning/error for duplicate construct name

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 29232 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29098] allocation of a pointer to a derived type crashes

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #7 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 29098 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29373] implicit type declaration and contained function clash

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #11 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 29373 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29115] ICE in structure constructor for array, ponter component with non-pointer data

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 29115 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29364] No error given if using a non-defined type in a type definition

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 29364 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29407] namelist: overriding the host association does not work (rejects valid code)

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 29407 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/24398] invalid module file gives weird error

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #12 from pault at gcc dot gnu dot org 2006-11-06 17:18 --- Subject: Bug 24398 Author: pault Date: Mon Nov 6 17:18:03 2006 New Revision: 118522 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118522 Log: 2006-11-06 Paul Thomas [EMAIL PROTECTED] PR

[Bug tree-optimization/29680] [4.3 Regression] Misscompilation of spec2006 gcc

2006-11-06 Thread hjl at lucon dot org
--- Comment #16 from hjl at lucon dot org 2006-11-06 17:19 --- I think we should add the testcase when the patch is reverted to prevent it from happening again. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29680

[Bug other/29700] check requires autogen

2006-11-06 Thread gin at mo dot msk dot ru
--- Comment #6 from gin at mo dot msk dot ru 2006-11-06 17:24 --- Subject: Re: check requires autogen `make' performing all tests is not enough to test successfully. The test failures normally result in make error, ignored by `-k' or not. One looks for such error messages in `make'

[Bug other/29700] check requires autogen

2006-11-06 Thread ebotcazou at gcc dot gnu dot org
--- Comment #7 from ebotcazou at gcc dot gnu dot org 2006-11-06 17:33 --- `make' performing all tests is not enough to test successfully. The test failures normally result in make error, ignored by `-k' or not. The GCC testsuite is DejaGNU-based so it is to be invoked with make -k

[Bug middle-end/28752] bootstrap comparision fails with -ftree-vectorize -maltivec on ppc

2006-11-06 Thread law at redhat dot com
--- Comment #8 from law at redhat dot com 2006-11-06 17:37 --- Subject: Re: bootstrap comparision fails with -ftree-vectorize -maltivec on ppc On Mon, 2006-11-06 at 09:39 +, irar at il dot ibm dot com wrote: --- Comment #7 from irar at il dot ibm dot com 2006-11-06

[Bug c/29739] -Wconversion produces invalid warnings.

2006-11-06 Thread pepster at users dot sourceforge dot net
--- Comment #4 from pepster at users dot sourceforge dot net 2006-11-06 17:45 --- Quick response? you must be joking. I reported this in Opened: 2002-05-09 14:46 against 2.95.3. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29739

[Bug c/29739] -Wconversion produces invalid warnings.

2006-11-06 Thread jaco at kroon dot co dot za
--- Comment #5 from jaco at kroon dot co dot za 2006-11-06 18:21 --- I'm refering to the response to the bug, not the actual fix. I've had the priviledge of filing bugs against other projects where I forgot about the bug by the time somebody responded (two years down the line). I

[Bug c/29739] -Wconversion produces invalid warnings.

2006-11-06 Thread pepster at users dot sourceforge dot net
--- Comment #6 from pepster at users dot sourceforge dot net 2006-11-06 18:49 --- 4 years to agree there is an issue here. maybe we will have a fix in 2010. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29739

[Bug fortran/29699] ICE in trans-decl.c

2006-11-06 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-11-06 19:14 --- Created an attachment (id=12552) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12552action=view) Patch to fix PR and two further, hidden problems The comments in the testcase tell the story. I need to think

[Bug fortran/23538] gfortran hangs on old cray fortran 66 program

2006-11-06 Thread aldot at gcc dot gnu dot org
--- Comment #10 from aldot at gcc dot gnu dot org 2006-11-06 19:14 --- Should there be a default (I currently default to 100) for -ferror-count? I did choose to add one single check into gfc_warning_check, so we don't immediately bail out if the error count did exceed the given limit.

[Bug target/29206] [4.2/4.3 regression] gcj-dbtool segfaults

2006-11-06 Thread drow at gcc dot gnu dot org
--- Comment #6 from drow at gcc dot gnu dot org 2006-11-06 19:33 --- Created an attachment (id=12553) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12553action=view) Potential patch. This hasn't been tested yet; when it has I can add a changelog and post it. That's in progress

[Bug fortran/23538] gfortran hangs on old cray fortran 66 program

2006-11-06 Thread aldot at gcc dot gnu dot org
--- Comment #11 from aldot at gcc dot gnu dot org 2006-11-06 19:41 --- Mine. Will regtest when i get to a machine with TeX installed. -- aldot at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/29739] -Wconversion produces invalid warnings.

2006-11-06 Thread lopezibanez at gmail dot com
--- Comment #7 from lopezibanez at gmail dot com 2006-11-06 19:51 --- I think 4.3 will be released on 2007 or early 2008. Fixing bugs on 4.2 and 4.3 will speed up things, of course. In addition, anyone could take the patches and apply them to their preferred stable version. I think

[Bug target/29714] internal compiler error: in extract_insn, at recog.c:2084

2006-11-06 Thread phil dot sidler at attachmate dot com
--- Comment #5 from phil dot sidler at attachmate dot com 2006-11-06 20:18 --- Recreated with the following #include stdint.h main() { uint8_t area = 1; uint8_t oldval; uint8_t res; oldval = area; res = __sync_val_compare_and_swap(area,

[Bug target/29714] internal compiler error: in extract_insn, at recog.c:2084

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-11-06 20:20 --- I think this has been fixed already, see PR 28924. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29714

[Bug c/29725] (signed char) to (signed int) typecast missbehaves

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-11-06 20:25 --- *** This bug has been marked as a duplicate of 27639 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/27639] [4.1 regression] VRP miscompilation of simple loop

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #32 from pinskia at gcc dot gnu dot org 2006-11-06 20:25 --- *** Bug 29725 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/29714] internal compiler error: in extract_insn, at recog.c:2084

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2006-11-06 20:26 --- (In reply to comment #5) Recreated with the following What exact version of 4.1.2 are you using? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29714

[Bug c++/29653] [4.1 Regression] boost/mpl/aux_/has_tag.hpp:20: internal compiler error: Segmentation fault

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-11-06 20:28 --- (In reply to comment #2) Reducing ... This is still reducing, well I got distracted for a little bit also. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29653

[Bug other/29668] [4.3 Regression] make error

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-11-06 20:29 --- I had meant to close this as fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/29648] Inlining only done for contained procedures

2006-11-06 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC||pinskia at gcc dot gnu dot |

[Bug target/29714] internal compiler error: in extract_insn, at recog.c:2084

2006-11-06 Thread phil dot sidler at attachmate dot com
--- Comment #8 from phil dot sidler at attachmate dot com 2006-11-06 20:29 --- I see you're right, this is probably fixed now. This was on cc (GCC) 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5) thanks. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29714

[Bug target/29714] internal compiler error: in extract_insn, at recog.c:2084

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #9 from pinskia at gcc dot gnu dot org 2006-11-06 20:31 --- This is a dup of bug 28924 after all and has been fixed already. *** This bug has been marked as a duplicate of 28924 *** -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug target/28924] x86 sync builtins fail for char and short memory operands

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #9 from pinskia at gcc dot gnu dot org 2006-11-06 20:31 --- *** Bug 29714 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/29739] -Wconversion produces invalid warnings.

2006-11-06 Thread pepster at users dot sourceforge dot net
--- Comment #8 from pepster at users dot sourceforge dot net 2006-11-06 20:34 --- I spent a considerable amount of my personal time on open source projects, so I am not particularily ashamed of not fixing this bug myself (I tried, but gave up after I realized the learnign curve is too

[Bug middle-end/29695] [4.1/4.2/4.3 Regression] Folding breaks (a 0x80) ? 0x80 : 0 for unsigned char or unsigned short a

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-11-06 20:34 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug fortran/29712] UBOUND of non-last dimensions of assumed-size array

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-11-06 20:37 --- This is my fault I think. There was a PR about ubound and assumed-size arrays where we crashed and I changed the code to reject all ubound on them IIRC. -- pinskia at gcc dot gnu dot org changed:

[Bug tree-optimization/29710] gnat ICEs on -fprefetch-loop-arrays -O1.

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-11-06 20:38 --- Can you give the backtrace and also attach the sources which crash? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/29713] [4.2 Regression] ICE in gfc_set_constant_character_len decl.c:762

2006-11-06 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC||pinskia at gcc dot gnu dot |

[Bug c++/29704] [4.1 Regression] ICE: default non-type template argument of pointer-to-member type

2006-11-06 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Summary|ICE: default non-type |[4.1 Regression] ICE: |template argument of

[Bug target/29206] [4.2/4.3 regression] gcj-dbtool segfaults

2006-11-06 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Comment #7 from dave at hiauly1 dot hia dot nrc dot ca 2006-11-06 21:09 --- Subject: Re: [4.2/4.3 regression] gcj-dbtool segfaults Ranjit's patch to enable prologue analysis on i386 changed the behavior for other SJLJ targets. They used to call the no-op fallback_backtrace

[Bug target/29206] [4.2/4.3 regression] gcj-dbtool segfaults

2006-11-06 Thread drow at gcc dot gnu dot org
--- Comment #8 from drow at gcc dot gnu dot org 2006-11-06 21:47 --- I'm not sure, but I think that our hppa port hasn't switched over yet. As for ARM, I'm not sure what to do to fix the issue. ARM old ABI is stuck with SJLJ. And the EABI can't implement _Unwind_Backtrace either. I

[Bug target/29714] internal compiler error: in extract_insn, at recog.c:2084

2006-11-06 Thread phil dot sidler at attachmate dot com
--- Comment #10 from phil dot sidler at attachmate dot com 2006-11-06 21:58 --- fyi, does work OK at gcc (GCC) 4.1.2 20061028 (prerelease) (Debian 4.1.1-19) cheers -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29714

[Bug other/29639] [4.3 regression] ext/bitmap_allocator/check_allocate_max_size.cc execution test

2006-11-06 Thread bkoz at gcc dot gnu dot org
--- Comment #29 from bkoz at gcc dot gnu dot org 2006-11-06 22:03 --- Created an attachment (id=12555) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12555action=view) auto-host.h file from FC6 gcc build directory Here you go Eric. --

[Bug other/29639] [4.3 regression] ext/bitmap_allocator/check_allocate_max_size.cc execution test

2006-11-06 Thread bkoz at gcc dot gnu dot org
--- Comment #30 from bkoz at gcc dot gnu dot org 2006-11-06 22:05 --- Since this is also new hardware for me, I'll try a couple of other things to try and isolate. Note that gcc-4_2-branch is working perfectly for me, so I have switched over to that for work as a temporary measure so I

[Bug fortran/29744] New: [Regression] Type renaming crashes gfortran with excessive memory usage

2006-11-06 Thread anlauf at gmx dot de
Hi, the code sample from PR 19362 crashes for me after eating all main memory. I checked that a copy of gfortran from 20060710 still works, while the copy from 20060904 and all later versions crash. The problems appears to be related to the renaming of the derived type from the included module.

[Bug target/29206] [4.2/4.3 regression] gcj-dbtool segfaults

2006-11-06 Thread debian-gcc at lists dot debian dot org
--- Comment #9 from debian-gcc at lists dot debian dot org 2006-11-06 22:14 --- hppa is supposed to use dwarf2 based exceptions in Debian; at least that's what the libgcc soversion (4) suggests; explicitely configuring with --enable-sjlj-exceptions would configure tu build libgcc with

[Bug other/29639] [4.3 regression] ext/bitmap_allocator/check_allocate_max_size.cc execution test

2006-11-06 Thread ebotcazou at gcc dot gnu dot org
--- Comment #31 from ebotcazou at gcc dot gnu dot org 2006-11-06 22:14 --- Here you go Eric. Thanks. Why are COMDAT groups disabled in your compiler? /* Define 0/1 if your assembler and linker support COMDAT groups. */ #ifndef USED_FOR_TARGET -#define HAVE_COMDAT_GROUP 0 +#define

[Bug fortran/29630] Unclassifiable statement with vector subscripts in initialization

2006-11-06 Thread eedelman at gcc dot gnu dot org
--- Comment #1 from eedelman at gcc dot gnu dot org 2006-11-06 22:19 --- Subject: Bug 29630 Author: eedelman Date: Mon Nov 6 22:18:54 2006 New Revision: 118528 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118528 Log: fortran/ 2006-11-06 Erik Edelmann [EMAIL PROTECTED]

[Bug fortran/29679] Inability to get shapes correct in initializations

2006-11-06 Thread eedelman at gcc dot gnu dot org
--- Comment #1 from eedelman at gcc dot gnu dot org 2006-11-06 22:19 --- Subject: Bug 29679 Author: eedelman Date: Mon Nov 6 22:18:54 2006 New Revision: 118528 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118528 Log: fortran/ 2006-11-06 Erik Edelmann [EMAIL PROTECTED]

[Bug c/29186] optimzation breaks floating point exception flag reading

2006-11-06 Thread kreckel at ginac dot de
--- Comment #17 from kreckel at ginac dot de 2006-11-06 22:23 --- (In reply to comment #15) Maybe scheduling would have the same issue. The fact that the result of the division is not used is a red herring, though. Of course, the assumption is that it's actually used. For the

[Bug target/29721] Wrong code when compiling libjava/verify.cc at -O2

2006-11-06 Thread daney at gcc dot gnu dot org
--- Comment #4 from daney at gcc dot gnu dot org 2006-11-06 22:31 --- OK, looks like GCC may be allowed to emit the relocations out of order. I am looking into the possiblility that gas can be fixed so that the relocaitons are emitted in the proper order even if their position in the

'configure' of gcc-4.1.1 apparently does not check for presence of 'autogen'

2006-11-06 Thread Sergei Steshenko
Hello, I am building gcc-4.1.1 in the framework of my project (see signature). Basically, 'gcc' is built according to configure make make check make install (I build everything locally, no root privileges are needed, directory per lib/app) scheme. Because of the scheme I expect all the

[Bug c++/29745] New: fold_offsetof_1

2006-11-06 Thread lepinat at free dot fr
hello, I ported an app on x86_64 and I isolate the class who's make a compiler break down. bug.C:47: internal compiler error: in fold_offsetof_1, at c-common.c:5998 Please submit a full bug report, with preprocessed source if appropriate. See URL:http://gcc.gnu.org/bugs.html for instructions.

[Bug c++/27601] [4.0/4.1/4.2 Regression] ICE (in fold_offsetof_1, at c-common.c:5998) on strange offsetof

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #19 from pinskia at gcc dot gnu dot org 2006-11-06 23:08 --- *** Bug 29745 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/29745] fold_offsetof_1

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-11-06 23:08 --- *** This bug has been marked as a duplicate of 27601 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/29439] [4.2/4.3 regression] ICE in fold-const.c:1385 with -O1 -fwrapv -ftree-vrp

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #15 from pinskia at gcc dot gnu dot org 2006-11-06 23:25 --- Subject: Bug 29439 Author: pinskia Date: Mon Nov 6 23:25:19 2006 New Revision: 118530 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=118530 Log: 2006-11-06 Andrew Pinski [EMAIL PROTECTED] PR

[Bug tree-optimization/29439] [4.2 regression] ICE in fold-const.c:1385 with -O1 -fwrapv -ftree-vrp

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #16 from pinskia at gcc dot gnu dot org 2006-11-06 23:25 --- Fixed on the mainline, will fix later on the 4.2 branch. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug other/29639] [4.3 regression] ext/bitmap_allocator/check_allocate_max_size.cc execution test

2006-11-06 Thread bkoz at gcc dot gnu dot org
--- Comment #32 from bkoz at gcc dot gnu dot org 2006-11-06 23:50 --- Dunno. However, this bit is the same for gcc and gcc-4_2-branch on my system. There are, however, other differences between the gcc and gcc-4_2-branch files: %diff gcc/auto-host.h ../gcc-4_2-branch/gcc/auto-host.h

[Bug other/29639] [4.3 regression] ext/bitmap_allocator/check_allocate_max_size.cc execution test

2006-11-06 Thread ebotcazou at gcc dot gnu dot org
--- Comment #33 from ebotcazou at gcc dot gnu dot org 2006-11-07 00:04 --- Dunno. However, this bit is the same for gcc and gcc-4_2-branch on my system. Weird. COMDAT groups are not supposed to be disabled on Linux I think. Dave, are they also disabled on yours? If so, what

[Bug c++/29729] [4.0/4.1/4.2/4.3 regression] ICE with template class in template function

2006-11-06 Thread bangerth at dealii dot org
--- Comment #1 from bangerth at dealii dot org 2006-11-07 01:04 --- Why exactly is this invalid again? W. -- bangerth at dealii dot org changed: What|Removed |Added

[Bug c++/29729] [4.0/4.1/4.2/4.3 regression] ICE with template class in template function

2006-11-06 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-11-07 01:10 --- (In reply to comment #1) Why exactly is this invalid again? Because local types cannot be templates. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29729

[Bug other/29639] [4.3 regression] ext/bitmap_allocator/check_allocate_max_size.cc execution test

2006-11-06 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Comment #34 from dave at hiauly1 dot hia dot nrc dot ca 2006-11-07 02:08 --- Subject: Re: [4.3 regression] ext/bitmap_allocator/check_allocate_max_size.cc execution test Weird. COMDAT groups are not supposed to be disabled on Linux I think. Dave, are they also disabled on

[Bug target/29746] New: gcc fails to bootstrap on sh4-*-linux-gnu

2006-11-06 Thread kkojima at gcc dot gnu dot org
The bootstrap on sh4-unknown-linux-gnu fails during stage2 with ../../TMP/trunk/gcc/ifcvt.c: In function 'noce_try_store_flag_constants': ../../TMP/trunk/gcc/ifcvt.c:1036: error: insn does not satisfy its constraints: (insn 871 901 872 42 ../../TMP/trunk/gcc/ifcvt.c:977 (set (reg:SI 147 t)

[Bug target/29746] gcc fails to bootstrap on sh4-*-linux-gnu

2006-11-06 Thread kkojima at gcc dot gnu dot org
--- Comment #1 from kkojima at gcc dot gnu dot org 2006-11-07 02:35 --- Created an attachment (id=12556) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12556action=view) a reduced test case -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29746

[Bug bootstrap/29747] New: No debug symbols when compiling stage2 compiler with -O2 -g

2006-11-06 Thread awreynolds at mac dot com
About the host compiler: MacBookPro15:~/Developer/Compiler/gcc-head drew$ gcc -v Using built-in specs. Target: i686-apple-darwin8 Configured with: /Users/drew/Developer/Compiler/gcc-head/configure --target=i686-apple-darwin8 --host=i686-apple-darwin8 --build=i686-apple-darwin8

[Bug target/29746] gcc fails to bootstrap on sh4-*-linux-gnu

2006-11-06 Thread kkojima at gcc dot gnu dot org
--- Comment #2 from kkojima at gcc dot gnu dot org 2006-11-07 02:37 --- I've attached a reduced test case which fails also on the cross compiler with -O2: foo.c:69: error: insn does not satisfy its constraints: (insn 232 235 233 9 (set (reg:SI 147 t) (eq:SI (reg:SI 8 r8

[Bug bootstrap/29747] No debug symbols when compiling stage2 compiler with -O2 -g

2006-11-06 Thread awreynolds at mac dot com
--- Comment #1 from awreynolds at mac dot com 2006-11-07 02:38 --- Created an attachment (id=12557) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12557action=view) intl/config.log Stage 2 configure of intl -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29747

[Bug target/29746] gcc fails to bootstrap on sh4-*-linux-gnu

2006-11-06 Thread kkojima at gcc dot gnu dot org
--- Comment #3 from kkojima at gcc dot gnu dot org 2006-11-07 02:39 --- Created an attachment (id=12558) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12558action=view) a reduced test case for the spill failure -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29746

  1   2   >