This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[gfortran] Print statements in testcase


Hi,

The testcase intrinsic_mmloc_4.f90 contains two print 
statements which cause gfortran fail to pass it.

This patch just delete the print statements.

2004-01-30  Canqun Yang  <canqun@nudt.edu.cn>
 
 	* gfortran.fortran-
torture/execute/intrinsic_mmloc_4.f90:
 	Delete print statements.


Canqun Yang
*** ChangeLog.tree-ssa	2004-01-30 08:36:35.000000000 +0800
--- ChangeLog.tree-ssa.new	2004-01-30 08:36:26.000000000 +0800
***************
*** 1,3 ****
--- 1,8 ----
+ 2004-01-30  Canqun Yang  <canqun@nudt.edu.cn>
+ 
+ 	* gfortran.fortran-torture/execute/intrinsic_mmloc_4.f90:
+ 	Delete print statements.
+ 
  2004-01-25  Richard Henderson  <rth@redhat.com>
  
  	* gcc.c-torture/execute/930529-1.x: Disable, update commentary.

*** intrinsic_mmloc_4.f90	2004-01-26 17:50:45.000000000 +0800
--- intrinsic_mmloc_4.f90.new	2004-01-30 08:38:45.000000000 +0800
***************
*** 6,15 ****
    integer, dimension(2) :: b
  
    allocate (d(0))
-   print *, maxloc (d, 1)
    if (maxloc (d, 1) .ne. 0) call abort()
    allocate (a(1, 0))
    b = minloc (a)
-   print *, b
    if (any (b .ne. 0)) call abort()
  end program
--- 6,13 ----

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]