public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/58861] New: No reallocation assignment performed (due to different kinds?)
@ 2013-10-24 12:22 vladimir.fuka at gmail dot com
  2013-12-21 17:12 ` [Bug fortran/58861] Realloc on assignment: Bogus "Array bound mismatch" error with -fcheck=bounds dominiq at lps dot ens.fr
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: vladimir.fuka at gmail dot com @ 2013-10-24 12:22 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 58861
           Summary: No reallocation assignment performed (due to different
                    kinds?)
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: vladimir.fuka at gmail dot com

program test
    real(8), allocatable :: a(:,:)
    real(4),allocatable :: b(:,:)
    allocate(b(100,100))
    b = 0
    !both lines below create problem
    a = real(b,kind=kind(a))
    a = b
end


gfortran realloc3.f90 -fcheck=all -Wall
gcc version 4.8.1 20130509 (prerelease) (GCC)

./a.out 
At line 7 of file realloc3.f90
Fortran runtime error: Array bound mismatch for dimension 1 of array 'a'
(0/100)


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-06-29 13:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-24 12:22 [Bug fortran/58861] New: No reallocation assignment performed (due to different kinds?) vladimir.fuka at gmail dot com
2013-12-21 17:12 ` [Bug fortran/58861] Realloc on assignment: Bogus "Array bound mismatch" error with -fcheck=bounds dominiq at lps dot ens.fr
2014-02-17 13:57 ` adam at aphirst dot karoo.co.uk
2015-06-29 13:34 ` elrond1111 at yahoo dot com

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).