annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do run }
kono
parents:
diff changeset
2 ! PR35962 Implement F2003 rounding modes.
kono
parents:
diff changeset
3 ! Test case prepared by Jerry Delisle <jvdelisle@gcc.gnu.org>
kono
parents:
diff changeset
4 integer,parameter :: j = max(4, selected_real_kind (precision (0.0_4) + 1))
kono
parents:
diff changeset
5 integer,parameter :: k = max(4, selected_real_kind (precision (0.0_8) + 1))
kono
parents:
diff changeset
6 character(64) :: line
kono
parents:
diff changeset
7 write(line, '(RN, 4F10.3)') 0.0625_j, 0.1875_j
kono
parents:
diff changeset
8 if (line.ne." 0.062 0.188") call abort
kono
parents:
diff changeset
9 write(line, '(RN, 4F10.2)') 0.125_j, 0.375_j, 1.125_j, 1.375_j
kono
parents:
diff changeset
10 if (line.ne." 0.12 0.38 1.12 1.38") call abort
kono
parents:
diff changeset
11 write(line, '(RN, 4F10.1)') 0.25_j, 0.75_j, 1.25_j, 1.75_j
kono
parents:
diff changeset
12 if (line.ne." 0.2 0.8 1.2 1.8") call abort
kono
parents:
diff changeset
13 write(line, '(RN, 4F10.0)') 0.5_j, 1.5_j, 2.5_j, 3.5_j
kono
parents:
diff changeset
14 if (line.ne." 0. 2. 2. 4.") call abort
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 write(line, '(RN, 4F10.3)') 0.0625_k, 0.1875_k
kono
parents:
diff changeset
17 if (line.ne." 0.062 0.188") call abort
kono
parents:
diff changeset
18 write(line, '(RN, 4F10.2)') 0.125_k, 0.375_k, 1.125_k, 1.375_k
kono
parents:
diff changeset
19 if (line.ne." 0.12 0.38 1.12 1.38") call abort
kono
parents:
diff changeset
20 write(line, '(RN, 4F10.1)') 0.25_k, 0.75_k, 1.25_k, 1.75_k
kono
parents:
diff changeset
21 if (line.ne." 0.2 0.8 1.2 1.8") call abort
kono
parents:
diff changeset
22 write(line, '(RN, 4F10.0)') 0.5_k, 1.5_k, 2.5_k, 3.5_k
kono
parents:
diff changeset
23 if (line.ne." 0. 2. 2. 4.") call abort
kono
parents:
diff changeset
24 end