blob: 6b912deb09201825185abad018241312891c27fa [file] [log] [blame]
/* PR middle-end/59261 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
typedef signed char V __attribute__((vector_size (8)));
void
foo (V *a, V *b)
{
*a = *b * 3;
}
void
bar (V *a, V *b)
{
*a = *b * 4;
}