summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ipa/nothrow-1.C
blob: b30b021592431e1584be59b981ac3861eee51626 (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
/* { dg-do compile } */
/* { dg-options "-O2 -fnon-call-exceptions -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;
}
int main()
{
  int aa;
  ptr = &barvar;
  try {
    aa=!a();
  } catch  (...)
  {
    return 1;
  }
  ptr = 0;
  return aa;
}
/* { dg-final { scan-tree-dump "__cxa_begin_catch"  "optimized"  } } */