[Bug fortran/36192] ICE with wrong index types and bad parens

2015-10-30 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36192 kargl at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--

[Bug fortran/36192] ICE with wrong index types and bad parens

2015-10-30 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36192 --- Comment #15 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Oct 30 16:58:20 2015 New Revision: 229591 URL: https://gcc.gnu.org/viewcvs?rev=229591&root=gcc&view=rev Log: 2015-10-30 Steven G. Kargl PR fortran/36192

[Bug fortran/36192] ICE with wrong index types and bad parens

2015-10-30 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36192 --- Comment #14 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Oct 30 16:46:20 2015 New Revision: 229590 URL: https://gcc.gnu.org/viewcvs?rev=229590&root=gcc&view=rev Log: 2015-10-30 Steven G. Kargl PR fortran/36192

[Bug fortran/36192] ICE with wrong index types and bad parens

2015-10-26 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36192 --- Comment #13 from kargl at gcc dot gnu.org --- Author: kargl Date: Mon Oct 26 17:39:07 2015 New Revision: 229387 URL: https://gcc.gnu.org/viewcvs?rev=229387&root=gcc&view=rev Log: 2015-10-26 Steven G. Kargl PR fortran/36192

[Bug fortran/36192] ICE with wrong index types and bad parens

2015-10-25 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36192 kargl at gcc dot gnu.org changed: What|Removed |Added CC||kargl at gcc dot gnu.org

[Bug fortran/36192] ICE with wrong index types and bad parens

2009-12-29 Thread kargl at gcc dot gnu dot org
--- Comment #11 from kargl at gcc dot gnu dot org 2009-12-30 00:44 --- The following patch "cures" the segfault but it sure feels like an ugly hack. Note cut-n-paste tab corruption is likely. troutmask:sgk[212] svn diff interface.c Index: interface.c ===

[Bug fortran/36192] ICE with wrong index types and bad parens

2009-12-29 Thread kargl at gcc dot gnu dot org
--- Comment #10 from kargl at gcc dot gnu dot org 2009-12-30 00:33 --- (In reply to comment #9) > Some addition information from valgrind. > > Error: Different shape for array assignment at (1) on dimension 1 (0 and 2) > ==13911== Invalid read of size 8 > ==13911==at 0x1C108F8: __gm

[Bug fortran/36192] ICE with wrong index types and bad parens

2009-12-29 Thread kargl at gcc dot gnu dot org
--- Comment #9 from kargl at gcc dot gnu dot org 2009-12-29 18:58 --- Some addition information from valgrind. Error: Different shape for array assignment at (1) on dimension 1 (0 and 2) ==13911== Invalid read of size 8 ==13911==at 0x1C108F8: __gmpz_get_si (in /usr/local/lib/libgmp.

[Bug fortran/36192] ICE with wrong index types and bad parens

2009-12-29 Thread kargl at gcc dot gnu dot org
--- Comment #8 from kargl at gcc dot gnu dot org 2009-12-29 18:37 --- (In reply to comment #7) > this appears to be fixed, at least in 4.3.5 and 4.4.2 > The problem still exist on at least x86_64-*-freebsd. troutmask:sgk[216] gfc4x -c homework-2.f90 ... Error: Different shape for arr

[Bug fortran/36192] ICE with wrong index types and bad parens

2009-12-29 Thread debian-gcc at lists dot debian dot org
--- Comment #7 from debian-gcc at lists dot debian dot org 2009-12-29 16:38 --- this appears to be fixed, at least in 4.3.5 and 4.4.2 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36192

[Bug fortran/36192] ICE with wrong index types and bad parens

2008-10-01 Thread dominiq at lps dot ens dot fr
--- Comment #6 from dominiq at lps dot ens dot fr 2008-10-01 12:09 --- Reduced code: program three_body real, parameter :: n = 2, d = 2 real, dimension(n,d) :: x x(1,:) = (/ 1.0, 0.0 /) end program three_body gives pr36192_ice.f90:3.18: real, dimension(n,d) :: x

[Bug fortran/36192] ICE with wrong index types and bad parens

2008-05-11 Thread dominiq at lps dot ens dot fr
--- Comment #5 from dominiq at lps dot ens dot fr 2008-05-11 16:40 --- For the record: after fixing the syntax errors, the executable gives an infinite loop when compiled with gfortran 4.3.0 on *i-apple-darwin9 and 4.4.0 (patched) on i686-apple-darwin9, but not on 4.4.0 (also patched) on

[Bug fortran/36192] ICE with wrong index types and bad parens

2008-05-09 Thread jvdelisle at gcc dot gnu dot org
--- Comment #4 from jvdelisle at gcc dot gnu dot org 2008-05-09 20:06 --- I can confirm that fixing the code as suggested does allow this to compile fine. Also confirming this is an ICE on invalid -- jvdelisle at gcc dot gnu dot org changed: What|Removed