[Bug libfortran/32858] printf-capabilities for runtime_error()

2007-07-30 Thread tkoenig at gcc dot gnu dot org
--- Comment #12 from tkoenig at gcc dot gnu dot org 2007-07-30 06:11 --- Fixed on trunk. Closing. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32858

[Bug target/32307] ICE building simple httpd log.c for -m5282x option

2007-07-30 Thread corsepiu at gcc dot gnu dot org
--- Comment #4 from corsepiu at gcc dot gnu dot org 2007-07-30 08:11 --- Having investigated this breakdown further, I can reproduce it for many coldfire variants. Also: FWIW: Adding -fomit-frame-pointer lets the ICE disappear. -- corsepiu at gcc dot gnu dot org changed:

[Bug tree-optimization/32527] [4.3 Regression] ICE in build2_stat, at tree.c:3074

2007-07-30 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2007-07-30 09:28 --- Subject: Bug 32527 Author: pinskia Date: Mon Jul 30 09:28:14 2007 New Revision: 127058 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=127058 Log: 2007-07-30 Andrew Pinski [EMAIL PROTECTED] PR

[Bug libfortran/32858] printf-capabilities for runtime_error()

2007-07-30 Thread pinskia at gcc dot gnu dot org
--- Comment #13 from pinskia at gcc dot gnu dot org 2007-07-30 09:30 --- Fixed as mentioned so closing. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/32527] [4.3 Regression] ICE in build2_stat, at tree.c:3074

2007-07-30 Thread pinskia at gcc dot gnu dot org
--- Comment #9 from pinskia at gcc dot gnu dot org 2007-07-30 09:30 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug c++/32108] [4.2/4.3 regression] ICE with __label__ outside of block scope

2007-07-30 Thread paolo at gcc dot gnu dot org
--- Comment #3 from paolo at gcc dot gnu dot org 2007-07-30 09:37 --- Subject: Bug 32108 Author: paolo Date: Mon Jul 30 09:37:20 2007 New Revision: 127059 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=127059 Log: cp/ 2007-07-30 Paolo Carlini [EMAIL PROTECTED] PR

[Bug regression/32582] Bootstrap with vectorization enabled fails with ICE on PPC

2007-07-30 Thread victork at il dot ibm dot com
--- Comment #19 from victork at il dot ibm dot com 2007-07-30 11:08 --- I've tried to bootstrap with -mabi=altivec, but it failed with the same error: /home/victork/mainline-20-06/build.124727mabi/./prev-gcc/xgcc -B/home/victork/mainline-20-06/build.124727mabi/./prev-gcc/

[Bug fortran/32935] New: internal compiler error: in emit_move_insn, at expr.c:3316

2007-07-30 Thread flad at gmx dot at
Using r127057 I get an internal compiler error with the following testcase: - program test_gfortran2 implicit none Integer, Parameter :: Double = Selected_Real_Kind(15,200) Integer :: j Complex(Double) :: g(5)

[Bug fortran/32935] internal compiler error: in emit_move_insn, at expr.c:3316

2007-07-30 Thread dominiq at lps dot ens dot fr
--- Comment #1 from dominiq at lps dot ens dot fr 2007-07-30 11:52 --- Confirmed on PPC Darwin8, ICE on 4.3, pass on 4.2 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32935

[Bug regression/32582] Bootstrap with vectorization enabled fails with ICE on PPC

2007-07-30 Thread rakdver at kam dot mff dot cuni dot cz
--- Comment #20 from rakdver at kam dot mff dot cuni dot cz 2007-07-30 11:56 --- Subject: Re: Bootstrap with vectorization enabled fails with ICE on PPC I've tried to bootstrap with -mabi=altivec, but it failed with the same error: yes, the problem on ppc64 must be something

[Bug c++/32934] No warning when creating a non const derived function from a const virtual function

2007-07-30 Thread CyrusOmega at gmail dot com
--- Comment #2 from CyrusOmega at gmail dot com 2007-07-30 12:04 --- (In reply to comment #1) Well it is valid as B::print hides A::print. Try doing: #include iostream class A { public: virtual char * print() const { return A\n;} virtual ~A(){}; }; class B : public A {

[Bug fortran/32935] [4.3 Regression] internal compiler error: in emit_move_insn, at expr.c:3316

2007-07-30 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2007-07-30 12:41 --- Works with 2007-02-02-r121508 (on x86-64-linux) Fails with 2007-02-02-r121519 (on x86-64-linux) Ignoring Java and testsuite changes one finds the following changelog: gcc/ChangeLog: +2007-02-02 Ian Lance Taylor

[Bug fortran/32935] [4.3 Regression] internal compiler error: in emit_move_insn, at expr.c:3316

2007-07-30 Thread dfranke at gcc dot gnu dot org
--- Comment #3 from dfranke at gcc dot gnu dot org 2007-07-30 13:36 --- Reduced testcase: program test_gfortran2 Complex(8) :: g, zh Real(8):: g_q g = zh/cmplx(0.0_8, -g_q, 8) - zh/cmplx(0.0_8,-g_q) end This is, again, all about kinds. If all involved variables are of

[Bug fortran/32935] [4.3 Regression] internal compiler error: in emit_move_insn, at expr.c:3316

2007-07-30 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2007-07-30 13:53 --- With stage1 based f95, I get a different ICE which shows the issue: t.f90:2: error: type mismatch in complex expression complex8 real8 real4 D.1336 = COMPLEX_EXPR -0.0, D.1335 t.f90:5: confused by earlier errors,

[Bug fortran/32935] [4.3 Regression] internal compiler error: in emit_move_insn, at expr.c:3316

2007-07-30 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2007-07-30 13:57 --- Here is an even shorter testcase: program test_gfortran2 Complex(8) :: g, zh Real(8):: g_q g = zh - zh/cmplx(0.0_8,-g_q) end -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32935

[Bug middle-end/32935] [4.3 Regression] internal compiler error: in emit_move_insn, at expr.c:3316

2007-07-30 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2007-07-30 14:05 --- And here is a patch which fixes the ICE: Index: fold-const.c === --- fold-const.c(revision 127042) +++ fold-const.c(working copy) @@

[Bug fortran/32936] New: Error: STAT expression ... must be a variable - but it is

2007-07-30 Thread flad at gmx dot at
The following testcase produces an error: function all_res() implicit none real, pointer :: gain integer :: all_res allocate (gain,STAT=all_res) end

[Bug target/32218] [4.2/4.3 Regression] segfault with -O1 -ftree-vectorize

2007-07-30 Thread sje at gcc dot gnu dot org
--- Comment #12 from sje at gcc dot gnu dot org 2007-07-30 15:16 --- Subject: Bug 32218 Author: sje Date: Mon Jul 30 15:15:54 2007 New Revision: 127062 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=127062 Log: PR target/32218 * tree-vect-patterns.c

[Bug c++/32108] [4.2/4.3 regression] ICE with __label__ outside of block scope

2007-07-30 Thread paolo at gcc dot gnu dot org
--- Comment #4 from paolo at gcc dot gnu dot org 2007-07-30 15:38 --- Subject: Bug 32108 Author: paolo Date: Mon Jul 30 15:38:39 2007 New Revision: 127064 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=127064 Log: cp/ 2007-07-30 Paolo Carlini [EMAIL PROTECTED] PR

[Bug c++/32108] [4.2/4.3 regression] ICE with __label__ outside of block scope

2007-07-30 Thread pcarlini at suse dot de
--- Comment #5 from pcarlini at suse dot de 2007-07-30 15:39 --- Fixed for 4.2.2. -- pcarlini at suse dot de changed: What|Removed |Added Status|ASSIGNED

[Bug fortran/32936] ALLOCATE: STAT expression ... must be a variable - but it is one

2007-07-30 Thread burnus at gcc dot gnu dot org
--- Comment #1 from burnus at gcc dot gnu dot org 2007-07-30 15:45 --- The problem is that all_res is not only the name of a (result) variable but also of the function itself. The following - not regtested - should work (also if one uses ENTRY rather than FUNCTION). Index:

[Bug fortran/31609] module that calls a contained function with an ENTRY point

2007-07-30 Thread pault at gcc dot gnu dot org
--- Comment #14 from pault at gcc dot gnu dot org 2007-07-30 16:22 --- To my amazement, the patch below fixes the problem and, I am pretty sure, will complete its regtest OK. Before posting it, I want to thoroughly check that I have understood the problem and that the fix is valid.

[Bug fortran/32936] ALLOCATE: STAT expression ... must be a variable - but it is one

2007-07-30 Thread patchapp at dberlin dot org
--- Comment #2 from patchapp at dberlin dot org 2007-07-30 18:30 --- Subject: Bug number PR32936 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/2007-07/msg02125.html --

[Bug fortran/32937] New: segfault with string and -fdefault-integer-8

2007-07-30 Thread tkoenig at gcc dot gnu dot org
The failure in actual_array_constructor_2.f90 can be reduced to $ cat actual_array_constructor_2.f90 character(4), dimension(4) :: c1, c2 integer m m = 4 call foo ((/(c1(i), i = m,1,-1)/), c2) if (any(c2(4:1:-1) .ne. c1)) call abort () contains subroutine foo (chr1, chr2)

[Bug libgcj/32929] [4.3 Regression] Make FAILURE in 4.3.0 - error: `CXX' has changed since the previous run:

2007-07-30 Thread hjl at lucon dot org
--- Comment #5 from hjl at lucon dot org 2007-07-30 20:22 --- Fixed. -- hjl at lucon dot org changed: What|Removed |Added Status|NEW

[Bug testsuite/32932] ssp-2.c fails when previous gcc-4.3 installation is visible

2007-07-30 Thread hjl at lucon dot org
--- Comment #2 from hjl at lucon dot org 2007-07-30 20:22 --- *** This bug has been marked as a duplicate of 32105 *** -- hjl at lucon dot org changed: What|Removed |Added

[Bug other/32105] Compiler warning in gcc

2007-07-30 Thread hjl at lucon dot org
--- Comment #3 from hjl at lucon dot org 2007-07-30 20:22 --- *** Bug 32932 has been marked as a duplicate of this bug. *** -- hjl at lucon dot org changed: What|Removed |Added

[Bug testsuite/32932] ssp-2.c fails when previous gcc-4.3 installation is visible

2007-07-30 Thread hjl at lucon dot org
--- Comment #3 from hjl at lucon dot org 2007-07-30 20:23 --- Wrong one. -- hjl at lucon dot org changed: What|Removed |Added Status|RESOLVED

[Bug testsuite/32064] ssp tests can't find libssp

2007-07-30 Thread hjl at lucon dot org
--- Comment #1 from hjl at lucon dot org 2007-07-30 20:23 --- *** Bug 32932 has been marked as a duplicate of this bug. *** -- hjl at lucon dot org changed: What|Removed |Added

[Bug testsuite/32932] ssp-2.c fails when previous gcc-4.3 installation is visible

2007-07-30 Thread hjl at lucon dot org
--- Comment #4 from hjl at lucon dot org 2007-07-30 20:23 --- *** This bug has been marked as a duplicate of 32064 *** -- hjl at lucon dot org changed: What|Removed |Added

[Bug fortran/32937] segfault with string and -fdefault-integer-8

2007-07-30 Thread dominiq at lps dot ens dot fr
--- Comment #1 from dominiq at lps dot ens dot fr 2007-07-30 20:24 --- The problem appears to be that the first argument to gfortani_compare_string is pushed as an 8-byte integer, which messes things up. The test passes for me with -m64, without it the backtrace is (on Darwin8):

[Bug middle-end/32878] FAIL: 23_containers/bitset/cons/16020.cc execution test

2007-07-30 Thread danglin at gcc dot gnu dot org
--- Comment #19 from danglin at gcc dot gnu dot org 2007-07-30 20:31 --- Introduced in revision 126326. -- danglin at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/32878] FAIL: 23_containers/bitset/cons/16020.cc execution test

2007-07-30 Thread hjl at lucon dot org
--- Comment #20 from hjl at lucon dot org 2007-07-30 20:41 --- Is this related to PR32921? Can you try the patch in comment 6: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32921#c6 -- hjl at lucon dot org changed: What|Removed |Added

[Bug fortran/32938] New: ICE in emit_move_insn with -fdefault-integer-8

2007-07-30 Thread tkoenig at gcc dot gnu dot org
Reducing the altreturn_5.f90 failure on i686-pc-linux-gnu, we get $ cat alt.f90 SUBROUTINE R (i, *, *) INTEGER i RETURN i END $ gdb ~/libexec/gcc/i686-pc-linux-gnu/4.3.0/f951 GNU gdb 6.4.90-debian Copyright (C) 2006 Free Software Foundation, Inc. GDB is free software,

[Bug libfortran/32770] [Meta-bug] -fdefault-integer-8 issues

2007-07-30 Thread tkoenig at gcc dot gnu dot org
--- Comment #22 from tkoenig at gcc dot gnu dot org 2007-07-30 21:06 --- Subject: Bug 32770 Author: tkoenig Date: Mon Jul 30 21:06:41 2007 New Revision: 127071 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=127071 Log: 2007-07-30 Thomas Koenig [EMAIL PROTECTED] PR

[Bug middle-end/32940] New: ivopts fails to set REG_POINTER attribute on pseudo

2007-07-30 Thread bergner at gcc dot gnu dot org
The ivopts pass fails to set the REG_POINTER attribute on a pseudo that is equal to two pseudos, one of which has teh REG_POINTER attribute and the other is just a n offset from it. This leads us to not sort the operands on an indexed load/store instruction causing performance problems on POWER6.

[Bug testsuite/32064] ssp tests can't find libssp

2007-07-30 Thread hjl at lucon dot org
--- Comment #2 from hjl at lucon dot org 2007-07-30 23:04 --- A patch is posted at http://gcc.gnu.org/ml/gcc-patches/2007-07/msg02151.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32064

[Bug libgcj/32939] (int) cast return different results beetween .class and native

2007-07-30 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-07-30 23:12 --- I think this was fixed for the trunk by removing the source code compiler. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32939

[Bug middle-end/32940] REG_POINTER attribute on DECL_ARTIFICIAL pointers

2007-07-30 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-07-30 23:54 --- ;; quadrant.0 = quadrant (insn 16 15 17 t.c:8 (set (reg:SI 127) (high:SI (symbol_ref:SI (quadrant) [flags 0x84] var_decl 0xf7d9f070 quadrant))) -1 (nil)) (insn 17 16 18 t.c:8 (set (reg/f:SI 126)

[Bug fortran/31609] module that calls a contained function with an ENTRY point

2007-07-30 Thread jvdelisle at gcc dot gnu dot org
--- Comment #15 from jvdelisle at gcc dot gnu dot org 2007-07-31 01:39 --- Regression tests fine on X86-64-Gnu/Linux -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31609