--- Comment #5 from dfranke at gcc dot gnu dot org 2007-05-17 13:37 ---
Subject: Bug 31919
Author: dfranke
Date: Thu May 17 12:37:24 2007
New Revision: 124794
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=124794
Log:
gcc/fortran:
2007-05-15 Daniel Franke <[EMAIL PROTECTED]>
--- Comment #4 from patchapp at dberlin dot org 2007-05-15 21:05 ---
Subject: Bug number PR31919
A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2007-05/msg01003.html
--
http://gcc.gnu.org/bugzilla/sh
--- Comment #3 from patchapp at dberlin dot org 2007-05-14 18:30 ---
Subject: Bug number PR31919
A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2007-05/msg00890.html
--
http://gcc.gnu.org/bugzilla/sh
--
dfranke at gcc dot gnu dot org changed:
What|Removed |Added
AssignedTo|unassigned at gcc dot gnu |dfranke at gcc dot gnu dot
|dot org
--- Comment #2 from dfranke at gcc dot gnu dot org 2007-05-14 16:41 ---
Minimal testcase:
$> cat pr31919.f90
INTEGER :: a(2), b(2,2)
PRINT *, MIN(a, b)
END
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31919
--- Comment #1 from dfranke at gcc dot gnu dot org 2007-05-14 16:39 ---
The problem is the handling of arrays in the MIN intrinsic. The reporter
probably wanted "MIN(MINVAL(x%kinenergy), MINVAL(x%realspeed))" as the
dimensions of REALSPEED and KINENERGY are not conformable.
$> sunf95 pr