annotate gcc/testsuite/gfortran.dg/chkbits.f90 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
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 ! NOT() was not return the two's complement value as reported by
kono
parents:
diff changeset
3 ! PR fortran/25458. In checking other bit manipulation intrinsics,
kono
parents:
diff changeset
4 ! IBSET was found to be in error.
kono
parents:
diff changeset
5 program chkbits
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 implicit none
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 integer(kind=1) i1
kono
parents:
diff changeset
10 integer(kind=2) i2
kono
parents:
diff changeset
11 integer(kind=4) i4
kono
parents:
diff changeset
12 integer(kind=8) i8
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 i1 = ibset(huge(0_1), bit_size(i1)-1)
kono
parents:
diff changeset
15 i2 = ibset(huge(0_2), bit_size(i2)-1)
kono
parents:
diff changeset
16 i4 = ibset(huge(0_4), bit_size(i4)-1)
kono
parents:
diff changeset
17 i8 = ibset(huge(0_8), bit_size(i8)-1)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
18 if (i1 /= -1 .or. i2 /= -1 .or. i4 /= -1 .or. i8 /= -1) STOP 1
111
kono
parents:
diff changeset
19
kono
parents:
diff changeset
20 i1 = ibclr(-1_1, bit_size(i1)-1)
kono
parents:
diff changeset
21 i2 = ibclr(-1_2, bit_size(i2)-1)
kono
parents:
diff changeset
22 i4 = ibclr(-1_4, bit_size(i4)-1)
kono
parents:
diff changeset
23 i8 = ibclr(-1_8, bit_size(i8)-1)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
24 if (i1 /= huge(0_1) .or. i2 /= huge(0_2)) STOP 2
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
25 if (i4 /= huge(0_4) .or. i8 /= huge(0_8)) STOP 3
111
kono
parents:
diff changeset
26
kono
parents:
diff changeset
27 i1 = not(0_1)
kono
parents:
diff changeset
28 i2 = not(0_2)
kono
parents:
diff changeset
29 i4 = not(0_4)
kono
parents:
diff changeset
30 i8 = not(0_8)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
31 if (i1 /= -1 .or. i2 /= -1 .or. i4 /= -1 .or. i8 /= -1) STOP 4
111
kono
parents:
diff changeset
32
kono
parents:
diff changeset
33 end program chkbits