[Bug fortran/64613] allocatable array after 4.7

2015-03-31 Thread ql.le at hotmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64613 --- Comment #2 from Quang Linh LE --- Actually the problem was because I recompiled vanilla versions of GCC/GDB on Fedora (I was on Fedora 17 with GCC 4.7). Fedora has long history of patches for GBD include VLA. After trying serveral times with

[Bug fortran/64613] New: allocatable array after 4.7

2015-01-15 Thread ql.le at hotmail dot com
Assignee: unassigned at gcc dot gnu.org Reporter: ql.le at hotmail dot com A small code to test: ``` integer :: x(2,3) integer, allocatable :: y(:,:) allocate(y(2,3)) x = reshape([1,2,3,4,5,6], [2,3], order=[2,1]) y = reshape([1,2,3,4,5,6], [2,3], order=[2,1]) print *, 'x', t