[MAINTAINERS] Update email and move to DCO
[official-gcc.git] / gcc / testsuite / gcc.target / arm / simd / pr105374.C
blob2b9096f1f521f82d5961befb4b1e3f360fc83fb2
1 /* { dg-do compile } */
2 /* { dg-options "-O3" } */
3 /* { dg-require-effective-target arm_v8_1m_mve_ok } */
4 /* { dg-add-options arm_v8_1m_mve } */
6 typedef float v4f __attribute__((vector_size(4 * sizeof(float))));
7 v4f f_x, f_y;
8 long f() { return (f_x < f_y | f_x <= f_y)[2]; }