cfgexpand: Expand comment on when non-var clobbers can show up
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr110142.c
bloba88dbe400f46a33a53649298345c24c569e2f567
1 /* { dg-do compile } */
2 /* { dg-additional-options "-O3" } */
3 void test(short *x, unsigned short *y, int n)
5 for (int i = 0; i < n; i++)
6 x[i] = (y[i] - x[i]) >> 1;
9 /* { dg-final { scan-tree-dump-not "widen_minus" "vect" } } */