summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/eh/pr38662.C
blob: 5da0f9763ba804058ef1fe16ed308bb78e6d6b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } }
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);
}