aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/eh/pr38662.C
blob: 294a12941f30b0d6189fb955376e22f25f33137f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } }
class E { };

class T {
  int foo(bool a) throw (E) __attribute__((regparm(1)));
  int bar(bool b) __attribute__((regparm(1)));
};

int T::bar(bool b)
{
  return (b ? 1 : 2);
}