comparison gcc/testsuite/gfortran.dg/pr35662.f90 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
11 11
12 program pr35662 12 program pr35662
13 real :: x, y, z 13 real :: x, y, z
14 x = 3.1415926535897932384626433832795029 14 x = 3.1415926535897932384626433832795029
15 call f (x, y, z) 15 call f (x, y, z)
16 if (abs (y) > 1.0e-5 .or. abs (z + 1.0) > 1.0e-5) call abort 16 if (abs (y) > 1.0e-5 .or. abs (z + 1.0) > 1.0e-5) STOP 1
17 x = x / 2.0 17 x = x / 2.0
18 call f (x, y, z) 18 call f (x, y, z)
19 if (abs (y - 1.0) > 1.0e-5 .or. abs (z) > 1.0e-5) call abort 19 if (abs (y - 1.0) > 1.0e-5 .or. abs (z) > 1.0e-5) STOP 2
20 end program pr35662 20 end program pr35662