AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / no_range_check_1.f90
blob7066e19835ce89ee520a3a359785e1033239e07b
1 ! { dg-do run }
2 ! { dg-options "-fno-range-check -O0" }
4 ! This testcase arose from PR 31262
5 integer :: a
6 integer(kind=8) :: b
7 b = -huge(b) / 7
8 b = 7894_8 * b - 78941_8
9 if (7894_8 * (-huge(b) / 7) - 78941_8 /= b) STOP 2
11 a = 1234789786453123
12 if (a - 1234789786453123 /= a - (-426244989)) STOP 3
13 end