gcc/gcc/testsuite/gcc.dg/pr59261.c

18 lines
218 B
C

/* 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;
}