aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/slsr-42.c
blob: 0495fcf94e24444c13d301e974a1b623456078d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-slsr-details" } */

struct x
{
  int a[16];
  int b[16];
};

void
set (struct x *p, unsigned int n, int i)
{
  p->a[n] = i;
  p->b[n] = i;
}

/* { dg-final { scan-tree-dump-not "Replacing reference: " "slsr"  { target i?86-*-* x86_64-*-* } } } */