Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / pr111082.c
blob46e36e320d11f9fe9dc7087c41cd9ff99de27c3f
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fno-vect-cost-model" } */
3 /* { dg-additional-options "-mavx512f" { target { x86_64-*-* i?86-*-* } } } */
5 long minarray2(const long *input)
7 if (input[0] < input[1])
8 return input[0] ;
9 return input[1];