From: Tobias Schlüter Date: Thu, 10 Jun 2004 12:41:32 +0000 (+0200) Subject: re PR fortran/14957 (testsuite issues) X-Git-Tag: releases/gcc-4.0.0~7790 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a7b155a6ad9475549f1c0e32bb7c29dc66567864;p=thirdparty%2Fgcc.git re PR fortran/14957 (testsuite issues) PR fortran/14957 * gfortran.fortran-torture/execute/intrinsic_scale.f90: Make all arguments to test_* REAL and of the right size. From-SVN: r82915 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index eddcfcf62696..8e856429774e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2004-06-10 Tobias Schlueter + + PR fortran/14957 + * gfortran.fortran-torture/execute/intrinsic_scale.f90: Make all + arguments to test_* REAL and of the right size. + 2004-06-10 Jakub Jelinek PR target/15569 diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_scale.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_scale.f90 index df483811415d..09acda5261cf 100644 --- a/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_scale.f90 +++ b/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_scale.f90 @@ -4,8 +4,8 @@ program test_scale call test_real4 (3.0, 2) call test_real4 (33.0, -2) call test_real4 (-3., 2) - call test_real4 (0, 3) - call test_real8 (0, 3) + call test_real4 (0., 3) + call test_real8 (0._8, 3) call test_real8 (3.0_8, 4) call test_real8 (33.0_8, -4) call test_real8 (-33._8, 4)