public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/37159]  New: RANDOM_SEED:  PUT=  check array size at compile time
@ 2008-08-19  6:29 burnus at gcc dot gnu dot org
  2008-08-24  6:38 ` [Bug fortran/37159] " burnus at gcc dot gnu dot org
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: burnus at gcc dot gnu dot org @ 2008-08-19  6:29 UTC (permalink / raw)
  To: gcc-bugs

The run-time library has:

  static const GFC_INTEGER_4 kiss_size =
sizeof(kiss_seed)/sizeof(kiss_seed[0]);
      if (((put->dim[0].ubound + 1 - put->dim[0].lbound)) < kiss_size)
        runtime_error ("Array size of PUT is too small.");

It would be great if the size could already be checked at compile time:

  integer size(6)
  CALL RANDOM_SEED(size=size(1))
  print *, size(1)
  CALL RANDOM_SEED(put=size)
end

$ ./a.out
           8
Fortran runtime error: Array size of PUT is too small.

Note: If HAVE_GFC_REAL_16 is set, size is larger than 8.
Vector too small for argument PUT (no. 2) of intrinsic RANDOM_SEED

NAG f95 checks things at compile time:
  Error: Vector too small for argument PUT (no. 2) of intrinsic RANDOM_SEED


-- 
           Summary: RANDOM_SEED:  PUT=  check array size at compile time
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Keywords: diagnostic
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: burnus at gcc dot gnu dot org


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
@ 2008-08-24  6:38 ` burnus at gcc dot gnu dot org
  2008-08-24 18:35 ` tkoenig at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: burnus at gcc dot gnu dot org @ 2008-08-24  6:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from burnus at gcc dot gnu dot org  2008-08-24 06:36 -------
Patch: http://gcc.gnu.org/ml/fortran/2008-08/msg00190.html


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
  2008-08-24  6:38 ` [Bug fortran/37159] " burnus at gcc dot gnu dot org
@ 2008-08-24 18:35 ` tkoenig at gcc dot gnu dot org
  2008-09-18 21:01 ` dennis dot wassel at googlemail dot com
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2008-08-24 18:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from tkoenig at gcc dot gnu dot org  2008-08-24 18:34 -------
Confirmed.


-- 

tkoenig at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-08-24 18:34:07
               date|                            |


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
  2008-08-24  6:38 ` [Bug fortran/37159] " burnus at gcc dot gnu dot org
  2008-08-24 18:35 ` tkoenig at gcc dot gnu dot org
@ 2008-09-18 21:01 ` dennis dot wassel at googlemail dot com
  2008-11-01 10:27 ` tkoenig at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dennis dot wassel at googlemail dot com @ 2008-09-18 21:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from dennis dot wassel at googlemail dot com  2008-09-18 21:00 -------
Updated patch: http://gcc.gnu.org/ml/fortran/2008-09/msg00161.html
Will be committed by Thomas Koenig as soon as my copyright assignment is done.

How come I cannot add myself in the "assigned to" or change the status?


-- 

dennis dot wassel at googlemail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dennis dot wassel at
                   |                            |googlemail dot com


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2008-09-18 21:01 ` dennis dot wassel at googlemail dot com
@ 2008-11-01 10:27 ` tkoenig at gcc dot gnu dot org
  2008-11-01 10:30 ` tkoenig at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2008-11-01 10:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from tkoenig at gcc dot gnu dot org  2008-11-01 10:25 -------
Subject: Bug 37159

Author: tkoenig
Date: Sat Nov  1 10:24:15 2008
New Revision: 141511

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141511
Log:
2008-11-01  Dennis Wassel  <dennis.wassel@gmail.com>

        PR fortran/37159
        * fortran/check.c (gfc_check_random_seed): Check PUT size
        at compile time.

2008-11-01  Dennis Wassel  <dennis.wassel@gmail.com>

        PR fortran/37159
        * intrinsics/random.c: Added comment to adapt check.c, should
        kiss_size change.
        Few cosmetic changes to existing comments.

2008-11-01  Dennis Wassel  <dennis.wassel@gmail.com>

        PR fortran/37159
        * gfortran.dg/random_seed_1.f90: New testcase.


Added:
    trunk/gcc/testsuite/gfortran.dg/random_seed_1.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/check.c
    trunk/gcc/testsuite/ChangeLog
    trunk/libgfortran/ChangeLog
    trunk/libgfortran/intrinsics/random.c


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2008-11-01 10:27 ` tkoenig at gcc dot gnu dot org
@ 2008-11-01 10:30 ` tkoenig at gcc dot gnu dot org
  2008-11-02 14:19 ` burnus at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2008-11-01 10:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from tkoenig at gcc dot gnu dot org  2008-11-01 10:29 -------
Committed patch.

Not closing yet, as the GET array could also be checked,
see http://gcc.gnu.org/ml/fortran/2008-10/msg00281.html .

Thomas


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2008-11-01 10:30 ` tkoenig at gcc dot gnu dot org
@ 2008-11-02 14:19 ` burnus at gcc dot gnu dot org
  2008-11-10  0:11 ` michael dot a dot richmond at nasa dot gov
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: burnus at gcc dot gnu dot org @ 2008-11-02 14:19 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from burnus at gcc dot gnu dot org  2008-11-02 14:18 -------
> Not closing yet, as the GET array could also be checked,
> see http://gcc.gnu.org/ml/fortran/2008-10/msg00281.html .

Another item: If the default integer is 8 instead of 4, the array sizes are
half as big (see also URL).


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2008-11-02 14:19 ` burnus at gcc dot gnu dot org
@ 2008-11-10  0:11 ` michael dot a dot richmond at nasa dot gov
  2008-11-10  3:18 ` jvdelisle at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: michael dot a dot richmond at nasa dot gov @ 2008-11-10  0:11 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from michael dot a dot richmond at nasa dot gov  2008-11-10 00:09 -------
I get a compile-time error:

mrichmon@msc545ux:~$ cat sort1.f90
PROGRAM sort1
INTEGER Count(1)   !Current value of system clock
  CALL Random_Seed(Put=Count)
END PROGRAM sort1
mrichmon@msc545ux:~$ gfortran sort1.f90
sort1.f90:3.23:

  CALL Random_Seed(Put=Count)
                      1
Error: Array PUT of intrinsic random_seed is too small (1/8) at (1)


-- 

michael dot a dot richmond at nasa dot gov changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |michael dot a dot richmond
                   |                            |at nasa dot gov


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2008-11-10  0:11 ` michael dot a dot richmond at nasa dot gov
@ 2008-11-10  3:18 ` jvdelisle at gcc dot gnu dot org
  2008-11-10 13:01 ` michael dot a dot richmond at nasa dot gov
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2008-11-10  3:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from jvdelisle at gcc dot gnu dot org  2008-11-10 03:16 -------
If you check, the minimum size of count is 8 as returned by the size= argument
if you use it. Try this. size is intent OUT.

PROGRAM sort1
INTEGER Count(1)   !Current value of system clock
integer Size
  CALL Random_Seed(size=size)
  print *, size
!  CALL Random_Seed(Put=Count)
END PROGRAM sort1


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2008-11-10  3:18 ` jvdelisle at gcc dot gnu dot org
@ 2008-11-10 13:01 ` michael dot a dot richmond at nasa dot gov
  2008-11-10 13:33 ` dennis dot wassel at googlemail dot com
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: michael dot a dot richmond at nasa dot gov @ 2008-11-10 13:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from michael dot a dot richmond at nasa dot gov  2008-11-10 12:59 -------
(In reply to comment #8)
> If you check, the minimum size of count is 8 as returned by the size= argument
> if you use it. Try this. size is intent OUT.

The documentation says only that the size argument has to be an integer. See
http://gcc.gnu.org/onlinedocs/gfortran/RANDOM_005fSEED.html


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2008-11-10 13:01 ` michael dot a dot richmond at nasa dot gov
@ 2008-11-10 13:33 ` dennis dot wassel at googlemail dot com
  2008-11-10 13:51 ` michael dot a dot richmond at nasa dot gov
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dennis dot wassel at googlemail dot com @ 2008-11-10 13:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from dennis dot wassel at googlemail dot com  2008-11-10 13:32 -------
Subject: Re:  RANDOM_SEED: PUT= check array size at compile time

> The documentation says only that the size argument has to be an integer. See
> http://gcc.gnu.org/onlinedocs/gfortran/RANDOM_005fSEED.html

On the contrary: The documentation clearly and concisely states

SIZE    (Optional) Shall be a scalar and of type default INTEGER, with
INTENT(OUT). It specifies the minimum size of the arrays used with the
PUT and GET arguments.

Admitted, it does not say SIZE = 8, because this value may be
compiler- and system-dependent (may also be 12 for gfortran on some
platforms), which is why the standard provides the SIZE argument in
the first place.

I fail to see the problem - could you clarify?


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2008-11-10 13:33 ` dennis dot wassel at googlemail dot com
@ 2008-11-10 13:51 ` michael dot a dot richmond at nasa dot gov
  2008-11-10 15:02 ` kargl at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: michael dot a dot richmond at nasa dot gov @ 2008-11-10 13:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from michael dot a dot richmond at nasa dot gov  2008-11-10 13:50 -------
(In reply to comment #10)
> Admitted, it does not say SIZE = 8, because this value may be
> compiler- and system-dependent (may also be 12 for gfortran on some
> platforms), which is why the standard provides the SIZE argument in
> the first place.
> 
> I fail to see the problem - could you clarify?
> 

A default integer on i386 is 4 bytes. The instruction "print sizeof(size)"
prints 4. I assume it should also print 4 if I use:

CALL Random_Seed(size=size)
  print *, size


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  PUT=  check array size at compile time
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2008-11-10 13:51 ` michael dot a dot richmond at nasa dot gov
@ 2008-11-10 15:02 ` kargl at gcc dot gnu dot org
  2008-12-09 22:38 ` [Bug fortran/37159] RANDOM_SEED: GET= check array size at compile time and respect -fdefault-integer-* dfranke at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: kargl at gcc dot gnu dot org @ 2008-11-10 15:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from kargl at gcc dot gnu dot org  2008-11-10 15:01 -------
(In reply to comment #11)
> (In reply to comment #10)
> > Admitted, it does not say SIZE = 8, because this value may be
> > compiler- and system-dependent (may also be 12 for gfortran on some
> > platforms), which is why the standard provides the SIZE argument in
> > the first place.
> > 
> > I fail to see the problem - could you clarify?
> > 
> 
> A default integer on i386 is 4 bytes. The instruction "print sizeof(size)"
> prints 4. I assume it should also print 4 if I use:
> 
> CALL Random_Seed(size=size)
>   print *, size
> 

'SIZE' is the number of elements in the array that you need
to use with PUT= and GET=

   program a
   integer, allocatable :: seeds(:)
   integer n
   call random_seed(size = n)
   allocate(seeds(n))
   call random_seed(get = seeds)
   print*, seeds
   deallocate(seeds)
   end program

It seems you need to revisit Metcalf and Reid or the Standard.


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  GET=  check array size at compile time and respect -fdefault-integer-*
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2008-11-10 15:02 ` kargl at gcc dot gnu dot org
@ 2008-12-09 22:38 ` dfranke at gcc dot gnu dot org
  2009-01-05 19:34 ` dfranke at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2008-12-09 22:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from dfranke at gcc dot gnu dot org  2008-12-09 22:36 -------
See comments #5 and #6 for remaining tasks.


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dfranke at gcc dot gnu dot
                   |                            |org
            Summary|RANDOM_SEED:  PUT=  check   |RANDOM_SEED:  GET=  check
                   |array size at compile time  |array size at compile time
                   |                            |and respect -fdefault-
                   |                            |integer-*


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


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

* [Bug fortran/37159] RANDOM_SEED:  GET=  check array size at compile time and respect -fdefault-integer-*
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2008-12-09 22:38 ` [Bug fortran/37159] RANDOM_SEED: GET= check array size at compile time and respect -fdefault-integer-* dfranke at gcc dot gnu dot org
@ 2009-01-05 19:34 ` dfranke at gcc dot gnu dot org
  2009-05-01 15:10 ` fxcoudert at gcc dot gnu dot org
  2009-05-01 15:21 ` dfranke at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2009-01-05 19:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from dfranke at gcc dot gnu dot org  2009-01-05 19:34 -------
Subject: Bug 37159

Author: dfranke
Date: Mon Jan  5 19:34:02 2009
New Revision: 143089

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=143089
Log:
gcc/fortran:
2009-01-05  Daniel Franke  <franke.daniel@gmail.com>

        PR fortran/37159
        * check.c (gfc_check_random_seed): Added size check for GET
        dummy argument, reworded error messages to follow common pattern.


gcc/testsuite:
2009-01-05  Daniel Franke  <franke.daniel@gmail.com>

        PR fortran/37159
        * gfortran.dg/random_seed_1.f90: Updated.


Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/check.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gfortran.dg/random_seed_1.f90


-- 


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


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

* [Bug fortran/37159] RANDOM_SEED:  GET=  check array size at compile time and respect -fdefault-integer-*
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (13 preceding siblings ...)
  2009-01-05 19:34 ` dfranke at gcc dot gnu dot org
@ 2009-05-01 15:10 ` fxcoudert at gcc dot gnu dot org
  2009-05-01 15:21 ` dfranke at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2009-05-01 15:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from fxcoudert at gcc dot gnu dot org  2009-05-01 15:10 -------
Daniel, shouldn't this PR be closed?


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |dfranke at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED


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


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

* [Bug fortran/37159] RANDOM_SEED:  GET=  check array size at compile time and respect -fdefault-integer-*
  2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
                   ` (14 preceding siblings ...)
  2009-05-01 15:10 ` fxcoudert at gcc dot gnu dot org
@ 2009-05-01 15:21 ` dfranke at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2009-05-01 15:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from dfranke at gcc dot gnu dot org  2009-05-01 15:21 -------
Fixed in trunk. Closing.


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.4.0


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


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

end of thread, other threads:[~2009-05-01 15:21 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-19  6:29 [Bug fortran/37159] New: RANDOM_SEED: PUT= check array size at compile time burnus at gcc dot gnu dot org
2008-08-24  6:38 ` [Bug fortran/37159] " burnus at gcc dot gnu dot org
2008-08-24 18:35 ` tkoenig at gcc dot gnu dot org
2008-09-18 21:01 ` dennis dot wassel at googlemail dot com
2008-11-01 10:27 ` tkoenig at gcc dot gnu dot org
2008-11-01 10:30 ` tkoenig at gcc dot gnu dot org
2008-11-02 14:19 ` burnus at gcc dot gnu dot org
2008-11-10  0:11 ` michael dot a dot richmond at nasa dot gov
2008-11-10  3:18 ` jvdelisle at gcc dot gnu dot org
2008-11-10 13:01 ` michael dot a dot richmond at nasa dot gov
2008-11-10 13:33 ` dennis dot wassel at googlemail dot com
2008-11-10 13:51 ` michael dot a dot richmond at nasa dot gov
2008-11-10 15:02 ` kargl at gcc dot gnu dot org
2008-12-09 22:38 ` [Bug fortran/37159] RANDOM_SEED: GET= check array size at compile time and respect -fdefault-integer-* dfranke at gcc dot gnu dot org
2009-01-05 19:34 ` dfranke at gcc dot gnu dot org
2009-05-01 15:10 ` fxcoudert at gcc dot gnu dot org
2009-05-01 15:21 ` dfranke at gcc dot gnu dot 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).