Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gfortran.dg/round_2.f03 @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 (2017-10-27) |
parents | |
children | 84e7813d76e9 |
comparison
equal
deleted
inserted
replaced
68:561a7518be6b | 111:04ced10e8804 |
---|---|
1 ! { dg-do run } | |
2 ! PR35962 Implement F2003 rounding modes. | |
3 ! Test case prepared by Jerry Delisle <jvdelisle@gcc.gnu.org> | |
4 integer,parameter :: j = max(4, selected_real_kind (precision (0.0_4) + 1)) | |
5 integer,parameter :: k = max(4, selected_real_kind (precision (0.0_8) + 1)) | |
6 character(64) :: line | |
7 write(line, '(RN, 4F10.3)') 0.0625_j, 0.1875_j | |
8 if (line.ne." 0.062 0.188") call abort | |
9 write(line, '(RN, 4F10.2)') 0.125_j, 0.375_j, 1.125_j, 1.375_j | |
10 if (line.ne." 0.12 0.38 1.12 1.38") call abort | |
11 write(line, '(RN, 4F10.1)') 0.25_j, 0.75_j, 1.25_j, 1.75_j | |
12 if (line.ne." 0.2 0.8 1.2 1.8") call abort | |
13 write(line, '(RN, 4F10.0)') 0.5_j, 1.5_j, 2.5_j, 3.5_j | |
14 if (line.ne." 0. 2. 2. 4.") call abort | |
15 | |
16 write(line, '(RN, 4F10.3)') 0.0625_k, 0.1875_k | |
17 if (line.ne." 0.062 0.188") call abort | |
18 write(line, '(RN, 4F10.2)') 0.125_k, 0.375_k, 1.125_k, 1.375_k | |
19 if (line.ne." 0.12 0.38 1.12 1.38") call abort | |
20 write(line, '(RN, 4F10.1)') 0.25_k, 0.75_k, 1.25_k, 1.75_k | |
21 if (line.ne." 0.2 0.8 1.2 1.8") call abort | |
22 write(line, '(RN, 4F10.0)') 0.5_k, 1.5_k, 2.5_k, 3.5_k | |
23 if (line.ne." 0. 2. 2. 4.") call abort | |
24 end |