PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / pr59261.c
blob6b912deb09201825185abad018241312891c27fa
1 /* PR middle-end/59261 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 typedef signed char V __attribute__((vector_size (8)));
7 void
8 foo (V *a, V *b)
10 *a = *b * 3;
13 void
14 bar (V *a, V *b)
16 *a = *b * 4;