[committed][RISC-V] Fix test expectations after recent late-combine changes
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr113371.c
blob46c4deb0db90b457fef71ad177c6461fbdf74862
1 /* { dg-do compile } */
2 /* { dg-additional-options "-O" } */
3 /* { dg-additional-options "-march=silvermont" { target { x86_64-*-* i?86-*-* } } } */
5 long *BN_uadd_ap;
7 void
8 BN_uadd (int dif, long t1)
10 long *rp;
11 while (dif)
13 dif--;
14 t1 = *BN_uadd_ap;
15 *rp++ = t1;
16 if (t1)
17 break;