blob: 7c5ed0119cb37c17eb28e84d388594011ae18ddd [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre1" } */
void
test (int *a, int *b, int * __restrict__ v)
{
*a = *v;
*b = *v;
}
/* { dg-final { scan-tree-dump-times "= \\*v" 1 "fre1" } } */