diff options
author | Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de> | 2004-06-10 14:41:32 +0200 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2004-06-10 14:41:32 +0200 |
commit | a7b155a6ad9475549f1c0e32bb7c29dc66567864 (patch) | |
tree | aa0eaf4a99465eb908a312f041f02670f8114f5c /gcc | |
parent | ba20a3eb0940651ab036d0694999176ce31f4db2 (diff) | |
download | gcc-a7b155a6ad9475549f1c0e32bb7c29dc66567864.zip gcc-a7b155a6ad9475549f1c0e32bb7c29dc66567864.tar.gz gcc-a7b155a6ad9475549f1c0e32bb7c29dc66567864.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_scale.f90 | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index eddcfcf..8e85642 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2004-06-10 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> + + 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 <jakub@redhat.com> 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 df48381..09acda5 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) |