aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr83847.c
blob: e42541e1b57c9511bd902d8676772fd348f97579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* { dg-do compile } */
/* { dg-additional-options "-march=bdver4" { target i?86-*-* x86_64-*-* } } */

typedef struct {
  struct {
    int a;
    int b;
  } c;
} * d;
typedef struct {
  unsigned e;
  d f[];
} g;
g h;
d *k;
int i(int j) {
  if (j) {
    *k = *h.f;
    return 1;
  }
  return 0;
}
int l;
int m;
int n;
d o;
void p() {
  for (; i(l); l++) {
    n += o->c.a;
    m += o->c.b;
  }
}