RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / float_1.f90
blob219d0a2438112b32c59e2b0216462a4cb058bf6b
1 ! { dg-do run }
2 ! PR fortran/26816
3 program test_float
4 integer(1) :: i1 = 1
5 integer(2) :: i2 = 1
6 integer(4) :: i4 = 1
7 integer(8) :: i8 = 1
8 if (float(i1) /= 1.) STOP 1! { dg-warning "non-default INTEGER" }
9 if (float(i2) /= 1.) STOP 2! { dg-warning "non-default INTEGER" }
10 if (float(i4) /= 1.) STOP 3
11 if (float(i8) /= 1.) STOP 4! { dg-warning "non-default INTEGER" }
13 if (kind(float(i4)) /= kind(1.0)) STOP 5
14 if (kind(float(i8)) /= kind(1.0)) STOP 6! { dg-warning "non-default INTEGER" }
15 end program test_float