Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr106196.c
blob56723de42c2cd87e4dd32fbf3a5c0ed8c4f58f09
1 /* { dg-do compile } */
2 /* { dg-additional-options "-ftree-vectorize -fno-vect-cost-model" } */
4 extern char a[];
5 char *b;
6 void e() {
7 char *d;
8 int c;
9 d = a;
10 for (; c; c++) {
11 d[2] = d[1] = d[0] = b[c];
12 d += 3;