summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/eh/builtin3.C
blob: 45809b81553771acac1e662e35c36de17fab176e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Without explicit prototype, we need to assume the builtin can
// throw for builtins that at least on one platform can throw.
// { dg-do compile }
// { dg-options "-fdump-tree-eh" }

struct A { A (); ~A (); int i; };

int
bar ()
{
  A a;
  __builtin_printf ("foo %d\n", a.i);
}

/* { dg-final { scan-tree-dump-times "resx" 1 "eh" } } */
/* { dg-final { cleanup-tree-dump "eh" } } */