diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/hypot_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/hypot_1.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/hypot_1.f90 b/gcc/testsuite/gfortran.dg/hypot_1.f90 index 0c1c6e2ae17..59022fab93c 100644 --- a/gcc/testsuite/gfortran.dg/hypot_1.f90 +++ b/gcc/testsuite/gfortran.dg/hypot_1.f90 @@ -18,11 +18,11 @@ program test call check(hypot(x4,y4), hypot(1.9_4,-2.1_4)) contains - subroutine check_r4 (a, b) ! { dg-warning "Extension: Internal procedure" } + subroutine check_r4 (a, b) real(kind=4), intent(in) :: a, b if (abs(a - b) > 1.e-5 * abs(b)) call abort end subroutine - subroutine check_r8 (a, b) ! { dg-warning "Extension: Internal procedure" } + subroutine check_r8 (a, b) real(kind=8), intent(in) :: a, b if (abs(a - b) > 1.e-7 * abs(b)) call abort end subroutine |