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

2006-05-05 Thread fxcoudert at gcc dot gnu dot org
--- Comment #12 from fxcoudert at gcc dot gnu dot org 2006-05-05 09:01 --- Fixed on mainline and 4.1. -- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added

[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=gcc&view=rev&rev=113376 Log: PR fortran/25681 * simplify.c (simplif

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

2006-04-27 Thread jv244 at cam dot ac dot uk
--- Comment #9 from jv244 at cam dot ac dot uk 2006-04-27 12:53 --- > [Adding Joost in CC list] Thanks. Any idea if it runs properly with the patch in place (have a look at the script cp2k/tools/do_regtest for setting up a testing run) ? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?

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

2006-04-27 Thread fxcoudert at gcc dot gnu dot org
--- Comment #8 from fxcoudert at gcc dot gnu dot org 2006-04-27 11:50 --- Patch (at least partial) submitted for approval. The patch allows CP2K to compile. -- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added -

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

2006-04-27 Thread patchapp at dberlin dot org
--- Comment #7 from patchapp at dberlin dot org 2006-04-27 11:50 --- Subject: Bug number PR fortran/25681 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/msg01033.html -- http://gcc.gnu.org/bu

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

2006-04-27 Thread fxcoudert at gcc dot gnu dot org
--- Comment #6 from fxcoudert at gcc dot gnu dot org 2006-04-27 09:49 --- (In reply to comment #5) > This bug is one of the issues preventing cp2k from compiling. I get this error > in timings.f90:335. This bug is still there. With mainline, on i686-linux, it seems to be the only remai

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

2006-03-19 Thread jb at gcc dot gnu dot org
--- Comment #5 from jb at gcc dot gnu dot org 2006-03-19 17:15 --- An even more reduced testcase is program char_type_len type foo_t character ( LEN = 80 ) :: bar (1) end type foo_t type(foo_t) :: foo print *, len (foo%bar) end program char_type_len I.e. it's not necessary

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

2006-02-06 Thread fxcoudert at gcc dot gnu dot org
--- Comment #4 from fxcoudert at gcc dot gnu dot org 2006-02-06 18:30 --- Here is the backtrace for this bug: Program received signal SIGSEGV, Segmentation fault. 0x080a4583 in gfc_conv_scalarized_array_ref (se=0xbfaf2924, ar=0x86f5d0c) at ../../../trunk/gcc/fortran/trans-array.c:1

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

2006-01-05 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-01-05 18:11 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

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

2006-01-05 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-01-05 16:47 --- Confirmed, reduced testcase: subroutine Derived() type Deriv character(len=9) :: class end type Deriv type(Deriv), dimension(2) :: f_2d i = len(f_2d%class) end subroutine Derived -- pinsk