aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr115236.c
blob: 91edfab957ac6da78cf9241e06c8373edb5ff619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do run } */
/* { dg-options "-O -fno-tree-fre" } */

int a, *b = &a;
int main()
{
  int *c, *volatile *d = &c;
  *d = b;
  if (c != &a)
    __builtin_abort();
  return 0;
}