summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ipa/pure-const-1.C
blob: a219c7130771cfa2eb9ebebc463216e95f95eb13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized"  } */
int *ptr;
static int barvar;

/* We can not detect A to be const because it may be interposed by unoptimized
   body.  */
inline
__attribute__ ((noinline))
int a(void)
{
  return *ptr == *ptr;
}
main()
{
  int aa;
  ptr = &barvar;
  aa=!a();
  ptr = 0;
  return aa;
}
/* { dg-final { scan-tree-dump "barvar"  "optimized"  } } */