1// Test EH when V2SI SIMD registers are involved.
2// Contributed by Aldy Hernandez (aldy@quesejoda.com).
3// { dg-options "-O -Wno-abi" }
4// { dg-options "-O -w" { target { { i?86-*-* x86_64-*-* } && ilp32 } } }
5// { dg-do run }
6
7typedef int __attribute__((vector_size (8))) vecint;
8
9vecint vecfunc (vecint beachbum)
10{
11  return beachbum;
12}
13
14void f3 (void)
15{
16  /* Force a use of a V2SI register if available.  On the PPC/E500,
17     this will cause the compiler to save the registers in this
18     function in 64-bits.  */
19  vecint foobar = (vecint) {0, 0};
20  foobar = vecfunc (foobar);
21
22  throw int();
23}
24
25void f2 (void)
26{
27  vecint foobar = (vecint) {0, 0};
28  foobar = vecfunc (foobar);
29
30  f3 ();
31}
32
33void f1 (void)
34{
35  int i;
36  try
37    {
38      f2 ();
39    }
40  catch (int)
41    {
42      i = 9;
43    }
44}
45
46int main ()
47{
48  f1 ();
49  return 0;
50}
51