public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libfortran/19016] New: maxloc ignores mask
@ 2004-12-15 17:33 Thomas dot Koenig at online dot de
  2004-12-15 23:37 ` [Bug libfortran/19016] " pinskia at gcc dot gnu dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Thomas dot Koenig at online dot de @ 2004-12-15 17:33 UTC (permalink / raw)
  To: gcc-bugs

$ cat maxloc-3.f90
  integer, dimension(3,3) :: n
  integer, dimension(2) :: i
  n = reshape((/3, 2, 1, 4, 7, 8, 7, 8, 9/), shape(n))
  i = maxloc(n, mask = n<6 )
  print '(3I3)',n
  print '(3L3)',n<6
  print *,i
  if (.not. n(i(1),i(2))<6) call abort
end program
$ gfortran maxloc-3.f90
$ ./a.out
  3  2  1
  4  7  8
  7  8  9
  T  T  T
  T  F  F
  F  F  F
           3           2
Aborted
$ gfortran -v
Reading specs from /home/zfkts/lib/gcc/ia64-unknown-linux-gnu/4.0.0/specs
Configured with: ../gcc-4.0-20041212/configure --prefix=/home/zfkts
--enable-languages=c,c++,f95 : (reconfigured) ../gcc-4.0-20041212/configure
--prefix=/home/zfkts --enable-languages=c,c++,f95 --disable-shared
Thread model: posix
gcc version 4.0.0 20041212 (experimental)

-- 
           Summary: maxloc ignores mask
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libfortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Thomas dot Koenig at online dot de
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug libfortran/19016] maxloc ignores mask
  2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
@ 2004-12-15 23:37 ` pinskia at gcc dot gnu dot org
  2004-12-27 22:24 ` Thomas dot Koenig at online dot de
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-12-15 23:37 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-12-15 23:37 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-12-15 23:37:03
               date|                            |


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


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

* [Bug libfortran/19016] maxloc ignores mask
  2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
  2004-12-15 23:37 ` [Bug libfortran/19016] " pinskia at gcc dot gnu dot org
@ 2004-12-27 22:24 ` Thomas dot Koenig at online dot de
  2005-04-12  9:02 ` tkoenig at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Thomas dot Koenig at online dot de @ 2004-12-27 22:24 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2004-12-27 22:24 -------
I did some more digging around, and found that
the error only occurred when the mask parameter
was generated "on the fly".  If the mask is a
precomputed logical array, the function works
correctly.

$ cat maxloc-4.f90
program main
  implicit none
  integer, dimension(3,3) :: n
  integer, dimension(2) :: i1, i2
  integer :: j
  integer, parameter :: limit=9
  logical, dimension(3,3) :: l

  n = reshape((/3, 2, 1, 4, 7, 8, 7, 8, 9/), shape(n))
  l = n<limit
  i1 = maxloc(n, mask = l )
  i2 = maxloc(n, n<limit)
  print '(3I3)',(n(:,j),j=1,3)
  print '(3L3)',(n(:,j)<limit,j=1,3)
  print '(A,I3)','limit ',limit
  print '(A,2I3,A,I3)','maxloc using array. Position ',i1(1),i1(2),' value', &
       n(i1(1),i1(2))
  print '(A,2I3,A,I3)','maxloc using expr.  Position ',i2(1),i2(2),' value', &
       n(i2(1),i2(2))
end program
$ ./a.out
  3  2  1
  4  7  8
  7  8  9
  T  T  T
  T  T  T
  T  T  F
limit   9
maxloc using array. Position   3  2 value  8
maxloc using expr.  Position   3  3 value  9
$ gfortran -v
Using built-in specs.
Configured with: ../gcc/configure --prefix=/home/ig25 --enable-languages=c,c++,f95
Thread model: posix
gcc version 4.0.0 20041227 (experimental)

-- 


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


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

* [Bug libfortran/19016] maxloc ignores mask
  2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
  2004-12-15 23:37 ` [Bug libfortran/19016] " pinskia at gcc dot gnu dot org
  2004-12-27 22:24 ` Thomas dot Koenig at online dot de
@ 2005-04-12  9:02 ` tkoenig at gcc dot gnu dot org
  2005-04-12 20:30 ` tkoenig at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-04-12  9:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tkoenig at gcc dot gnu dot org  2005-04-12 09:02 -------
... finishing the comment here..

fixes the test case, but a mask generated "on the fly" with
maxloc(...,dim=...) (i.e. the maxloc1 family of functions)
is still broken.

I am doing some more digging around.

Thomas

-- 


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


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

* [Bug libfortran/19016] maxloc ignores mask
  2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
                   ` (2 preceding siblings ...)
  2005-04-12  9:02 ` tkoenig at gcc dot gnu dot org
@ 2005-04-12 20:30 ` tkoenig at gcc dot gnu dot org
  2005-04-12 22:58 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-04-12 20:30 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tkoenig at gcc dot gnu dot org  2005-04-12 20:30 -------
Patch here:

http://gcc.gnu.org/ml/fortran/2005-04/msg00371.html

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


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


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

* [Bug libfortran/19016] maxloc ignores mask
  2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
                   ` (3 preceding siblings ...)
  2005-04-12 20:30 ` tkoenig at gcc dot gnu dot org
@ 2005-04-12 22:58 ` cvs-commit at gcc dot gnu dot org
  2005-04-13  8:27 ` [Bug libfortran/19016] [4.0 only] " tkoenig at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-04-12 22:58 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-04-12 22:57 -------
Subject: Bug 19016

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	tkoenig@gcc.gnu.org	2005-04-12 22:57:10

Modified files:
	libgfortran    : ChangeLog 
	gcc/testsuite  : ChangeLog 
	gcc/testsuite/gfortran.fortran-torture/execute: 
	                                                intrinsic_mmloc.f90 
	                                                intrinsic_mmval.f90 
	                                                intrinsic_product.f90 
	                                                intrinsic_sum.f90 
	libgfortran/m4 : iforeach.m4 ifunction.m4 
	libgfortran/generated: maxloc0_4_i4.c maxloc0_4_i8.c 
	                       maxloc0_4_r4.c maxloc0_4_r8.c 
	                       maxloc0_8_i4.c maxloc0_8_i8.c 
	                       maxloc0_8_r4.c maxloc0_8_r8.c 
	                       maxloc1_4_i4.c maxloc1_4_i8.c 
	                       maxloc1_4_r4.c maxloc1_4_r8.c 
	                       maxloc1_8_i4.c maxloc1_8_i8.c 
	                       maxloc1_8_r4.c maxloc1_8_r8.c maxval_i4.c 
	                       maxval_i8.c maxval_r4.c maxval_r8.c 
	                       minloc0_4_i4.c minloc0_4_i8.c 
	                       minloc0_4_r4.c minloc0_4_r8.c 
	                       minloc0_8_i4.c minloc0_8_i8.c 
	                       minloc0_8_r4.c minloc0_8_r8.c 
	                       minloc1_4_i4.c minloc1_4_i8.c 
	                       minloc1_4_r4.c minloc1_4_r8.c 
	                       minloc1_8_i4.c minloc1_8_i8.c 
	                       minloc1_8_r4.c minloc1_8_r8.c minval_i4.c 
	                       minval_i8.c minval_r4.c minval_r8.c 
	                       product_c4.c product_c8.c product_i4.c 
	                       product_i8.c product_r4.c product_r8.c 
	                       sum_c4.c sum_c8.c sum_i4.c sum_i8.c 
	                       sum_r4.c sum_r8.c 

Log message:
	2005-04-13  Thomas Koenig  <Thomas.Koenig@online.de>
	
	PR libfortran/19106
	* m4/iforeach.c (name`'rtype_qual`_'atype_code):  Add TODO
	that setting correct strides is a front end job.
	(`m'name`'rtype_qual`_'atype_code):  Likewise.  If mask has
	a lowest stride of 0, adjust to 1.
	* m4/ifunction.c (name`'rtype_qual`_'atype_code):  Add TODO
	that setting correct strides is a front end job.
	(`m'name`'rtype_qual`_'atype_code):  Likewise.  If mask has
	a lowest stride of 0, adjust to 1.
	* maxloc0_4_i4.c: Regenerated
	* maxloc0_4_i8.c: Regenerated
	* maxloc0_4_r4.c: Regenerated
	* maxloc0_4_r8.c: Regenerated
	* maxloc0_8_i4.c: Regenerated
	* maxloc0_8_i8.c: Regenerated
	* maxloc0_8_r4.c: Regenerated
	* maxloc0_8_r8.c: Regenerated
	* maxloc1_4_i4.c: Regenerated
	* maxloc1_4_i8.c: Regenerated
	* maxloc1_4_r4.c: Regenerated
	* maxloc1_4_r8.c: Regenerated
	* maxloc1_8_i4.c: Regenerated
	* maxloc1_8_i8.c: Regenerated
	* maxloc1_8_r4.c: Regenerated
	* maxloc1_8_r8.c: Regenerated
	* maxval_i4.c: Regenerated
	* maxval_i8.c: Regenerated
	* maxval_r4.c: Regenerated
	* maxval_r8.c: Regenerated
	* minloc0_4_i4.c: Regenerated
	* minloc0_4_i8.c: Regenerated
	* minloc0_4_r4.c: Regenerated
	* minloc0_4_r8.c: Regenerated
	* minloc0_8_i4.c: Regenerated
	* minloc0_8_i8.c: Regenerated
	* minloc0_8_r4.c: Regenerated
	* minloc0_8_r8.c: Regenerated
	* minloc1_4_i4.c: Regenerated
	* minloc1_4_i8.c: Regenerated
	* minloc1_4_r4.c: Regenerated
	* minloc1_4_r8.c: Regenerated
	* minloc1_8_i4.c: Regenerated
	* minloc1_8_i8.c: Regenerated
	* minloc1_8_r4.c: Regenerated
	* minloc1_8_r8.c: Regenerated
	* minval_i4.c: Regenerated
	* minval_i8.c: Regenerated
	* minval_r4.c: Regenerated
	* minval_r8.c: Regenerated
	* product_c4.c: Regenerated
	* product_c8.c: Regenerated
	* product_i4.c: Regenerated
	* product_i8.c: Regenerated
	* product_r4.c: Regenerated
	* product_r8.c: Regenerated
	* sum_c4.c: Regenerated
	* sum_c8.c: Regenerated
	* sum_i4.c: Regenerated
	* sum_i8.c: Regenerated
	* sum_r4.c: Regenerated
	* sum_r8.c: Regenerated
	
	2005-04-13  Thomas Koenig  <Thomas.Koenig@online.de>
	
	PR libfortran/19016
	* gfortran.fortran-torture/execute/intrinsic_mmloc.f90:
	Add tests with mask generated by expression.
	* gfortran.fortran-torture/execute/intrinsic_mmval.f90:  Likewise.
	* gfortran.fortran-torture/execute/intrinsic_product.f90:  Likewise.
	* gfortran.fortran-torture/execute/intrinsic_sum.f90:  Likewise.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&r1=1.191&r2=1.192
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5334&r2=1.5335
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_mmloc.f90.diff?cvsroot=gcc&r1=1.3&r2=1.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_mmval.f90.diff?cvsroot=gcc&r1=1.3&r2=1.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_product.f90.diff?cvsroot=gcc&r1=1.3&r2=1.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_sum.f90.diff?cvsroot=gcc&r1=1.3&r2=1.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/m4/iforeach.m4.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/m4/ifunction.m4.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc0_4_i4.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc0_4_i8.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc0_4_r4.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc0_4_r8.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc0_8_i4.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc0_8_i8.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc0_8_r4.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc0_8_r8.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc1_4_i4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc1_4_i8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc1_4_r4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc1_4_r8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc1_8_i4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc1_8_i8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc1_8_r4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxloc1_8_r8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxval_i4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxval_i8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxval_r4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/maxval_r8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc0_4_i4.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc0_4_i8.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc0_4_r4.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc0_4_r8.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc0_8_i4.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc0_8_i8.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc0_8_r4.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc0_8_r8.c.diff?cvsroot=gcc&r1=1.7&r2=1.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc1_4_i4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc1_4_i8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc1_4_r4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc1_4_r8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc1_8_i4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc1_8_i8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc1_8_r4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minloc1_8_r8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minval_i4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minval_i8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minval_r4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/minval_r8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/product_c4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/product_c8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/product_i4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/product_i8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/product_r4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/product_r8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/sum_c4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/sum_c8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/sum_i4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/sum_i8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/sum_r4.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/generated/sum_r8.c.diff?cvsroot=gcc&r1=1.9&r2=1.10



-- 


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


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

* [Bug libfortran/19016] [4.0 only] maxloc ignores mask
  2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
                   ` (4 preceding siblings ...)
  2005-04-12 22:58 ` cvs-commit at gcc dot gnu dot org
@ 2005-04-13  8:27 ` tkoenig at gcc dot gnu dot org
  2005-05-20 22:52 ` cvs-commit at gcc dot gnu dot org
  2005-05-20 22:52 ` tkoenig at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-04-13  8:27 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tkoenig at gcc dot gnu dot org  2005-04-13 08:27 -------
Fixed in 4.1, waiting for 4.0 to reopen to apply there.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|maxloc ignores mask         |[4.0 only] maxloc ignores
                   |                            |mask
   Target Milestone|---                         |4.0.1


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


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

* [Bug libfortran/19016] [4.0 only] maxloc ignores mask
  2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
                   ` (6 preceding siblings ...)
  2005-05-20 22:52 ` cvs-commit at gcc dot gnu dot org
@ 2005-05-20 22:52 ` tkoenig at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-05-20 22:52 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tkoenig at gcc dot gnu dot org  2005-05-20 22:52 -------
Fixed in 4.0.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


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


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

* [Bug libfortran/19016] [4.0 only] maxloc ignores mask
  2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
                   ` (5 preceding siblings ...)
  2005-04-13  8:27 ` [Bug libfortran/19016] [4.0 only] " tkoenig at gcc dot gnu dot org
@ 2005-05-20 22:52 ` cvs-commit at gcc dot gnu dot org
  2005-05-20 22:52 ` tkoenig at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-05-20 22:52 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-05-20 22:52 -------
Subject: Bug 19016

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	tkoenig@gcc.gnu.org	2005-05-20 22:51:46

Modified files:
	libgfortran    : ChangeLog 

Log message:
	PR libfortran/19016
	Added entry to Changelog (bug fixed).

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.163.2.34&r2=1.163.2.35



-- 


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


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

end of thread, other threads:[~2005-05-20 22:52 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-12-15 17:33 [Bug libfortran/19016] New: maxloc ignores mask Thomas dot Koenig at online dot de
2004-12-15 23:37 ` [Bug libfortran/19016] " pinskia at gcc dot gnu dot org
2004-12-27 22:24 ` Thomas dot Koenig at online dot de
2005-04-12  9:02 ` tkoenig at gcc dot gnu dot org
2005-04-12 20:30 ` tkoenig at gcc dot gnu dot org
2005-04-12 22:58 ` cvs-commit at gcc dot gnu dot org
2005-04-13  8:27 ` [Bug libfortran/19016] [4.0 only] " tkoenig at gcc dot gnu dot org
2005-05-20 22:52 ` cvs-commit at gcc dot gnu dot org
2005-05-20 22:52 ` tkoenig 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).