These two tests now vectorize the result finding
loop with PFA and so the number of loops checked
fails.
This fixes them by adding #pragma GCC novector to
the testcases.
gcc/testsuite/ChangeLog:
PR testsuite/118754
* gcc.dg/vect/vect-tail-nomask-1.c: Add novector.
* gcc.target/i386/pr106010-8c.c: Likewise.
init_data (a, b, c, SIZE);
test_citer (a, b, c);
+#pragma GCC novector
for (i = 0; i < SIZE; i++)
if (c[i] != a[i] + b[i])
__builtin_abort ();
init_data (a, b, c, SIZE);
test_viter (a, b, c, SIZE);
+#pragma GCC novector
for (i = 0; i < SIZE; i++)
if (c[i] != a[i] + b[i])
__builtin_abort ();
__builtin_memset (ph_dst, 0, 2 * N * sizeof (_Float16));
foo_ph (ph_dst);
+#pragma GCC novector
for (int i = 0; i != N; i++)
{
if (ph_dst[i] != ph_src)