Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gfortran.dg/boz_1.f90 @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 (2020-05-25) |
parents | 1830386684a0 |
children |
line wrap: on
line source
! { dg-do run } ! { dg-options "-std=gnu -fallow-invalid-boz" } ! Test the boz handling program boz implicit none integer(1), parameter :: b1 = b'00000001' ! { dg-warning "BOZ literal constant" } integer(2), parameter :: b2 = b'0101010110101010' ! { dg-warning "BOZ literal constant" } integer(4), parameter :: b4 = b'01110000111100001111000011110000' ! { dg-warning "BOZ literal constant" } integer(8), parameter :: & & b8 = b'0111000011110000111100001111000011110000111100001111000011110000' ! { dg-warning "BOZ literal constant" } integer(1), parameter :: o1 = o'12' ! { dg-warning "BOZ literal constant" } integer(2), parameter :: o2 = o'4321' ! { dg-warning "BOZ literal constant" } integer(4), parameter :: o4 = o'43210765' ! { dg-warning "BOZ literal constant" } integer(8), parameter :: o8 = o'1234567076543210' ! { dg-warning "BOZ literal constant" } integer(1), parameter :: z1 = z'a' ! { dg-warning "BOZ literal constant" } integer(2), parameter :: z2 = z'ab' ! { dg-warning "BOZ literal constant" } integer(4), parameter :: z4 = z'dead' ! { dg-warning "BOZ literal constant" } integer(8), parameter :: z8 = z'deadbeef' ! { dg-warning "BOZ literal constant" } if (z1 /= 10_1) STOP 1 if (z2 /= 171_2) STOP 2 if (z4 /= 57005_4) STOP 3 if (z8 /= 3735928559_8) STOP 4 if (b1 /= 1_1) STOP 5 if (b2 /= 21930_2) STOP 6 if (b4 /= 1894838512_4) STOP 7 if (b8 /= 8138269444283625712_8) STOP 8 if (o1 /= 10_1) STOP 9 if (o2 /= 2257_2) STOP 10 if (o4 /= 9245173_4) STOP 11 if (o8 /= 45954958542472_8) STOP 12 end program boz