summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/boz_1.f90
blob: 5f9abb3b2568ab8b5313f6157fb35f6cefa48ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
! { 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