aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr40233.c
blob: b3487edde74f9d02e2648145783e36162e8eacd9 (plain)
1
2
3
4
5
6
7
8
9
10
typedef int aligned __attribute__((aligned(64)));
struct Frame {
  aligned i;
};

void foo(struct Frame *p)
{
  aligned *q = &p->i;
  *q = 0;
}