tree-optimization/113385 - wrong loop father with early exit vectorization
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr106556.f90
blob01b89a8eee2027daf125af1027e90757228774ce
1 ! { dg-do compile }
2 ! { dg-options "-O1 -fnon-call-exceptions -ftree-loop-if-convert" }
5 program p
6 real :: a(2)
8 a(:) = 1.0
9 if (minloc (a, dim = 1).ne.1) STOP 1
10 end