public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/36683]  New: -fbounds-check failure for allocated array and spread
@ 2008-07-01  5:22 terry at chem dot gu dot se
  2008-07-01 19:22 ` [Bug fortran/36683] " tkoenig at gcc dot gnu dot org
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: terry at chem dot gu dot se @ 2008-07-01  5:22 UTC (permalink / raw)
  To: gcc-bugs

Unconformable array operations are not being picked up in the following:

[tjf@rscpc28 Stoopid]$ cat badness.f90 
program fred
implicit none
real,dimension(:,:),allocatable::A
real,dimension(5)::v
allocate(A(5,5))
A=5
v=5
A=A/spread(v,2,3)
write(*,*)A(1,:)
write(*,*)A(2,:)
write(*,*)A(3,:)
write(*,*)A(4,:)
write(*,*)A(5,:)
end
[tjf@rscpc28 Stoopid]$ gfortran -Wall -O0 -W -Wtabs -g -fbounds-check -o
badness badness.f90
[tjf@rscpc28 Stoopid]$ ./badness 
  1.00000000      1.00000000      1.00000000       5.0000000       5.0000000    
  1.00000000      1.00000000      1.00000000       5.0000000       5.0000000    
  1.00000000      1.00000000      1.00000000       5.0000000       5.0000000    
  1.00000000      1.00000000      1.00000000       5.0000000       5.0000000    
  1.00000000      1.00000000      1.00000000       5.0000000       5.0000000    
[tjf@rscpc28 Stoopid]$ gfortran -v
Using built-in specs.
Target: i686-pc-linux-gnu
Configured with: ../gcc-4.3-20080522/configure --disable-multilib
--enable-languages=c,c++,fortran
Thread model: posix
gcc version 4.3.1 20080522 (prerelease) (GCC) 


Making the spread array too big [spread(v,2,13)] is not detected either.  My
quick attempts to do both in a single code caused glibc to freak out with
"double free or corruption" detection.


-- 
           Summary: -fbounds-check failure for allocated array and spread
           Product: gcc
           Version: 4.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: terry at chem dot gu dot se
  GCC host triplet: i686-pc-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36683


^ permalink raw reply	[flat|nested] 5+ messages in thread
[parent not found: <bug-36683-4@http.gcc.gnu.org/bugzilla/>]

end of thread, other threads:[~2013-08-09  7:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-01  5:22 [Bug fortran/36683] New: -fbounds-check failure for allocated array and spread terry at chem dot gu dot se
2008-07-01 19:22 ` [Bug fortran/36683] " tkoenig at gcc dot gnu dot org
2008-10-12 12:11 ` tkoenig at gcc dot gnu dot org
2009-04-29 14:20 ` dominiq at lps dot ens dot fr
     [not found] <bug-36683-4@http.gcc.gnu.org/bugzilla/>
2013-08-09  7:55 ` tkoenig at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).