Sign in
gnu
/
gcc
/
a8404c07e7fca388c02c39077865f7d5fa928430
/
.
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr47639.C
blob: 429ad258ec6161225297903e2ab43f01bcd733b3 [
file
] [
log
] [
blame
]
// { dg-do compile }
// { dg-options "-fnon-call-exceptions -Wno-psabi" }
typedef
int
__attribute__
((
vector_size
(
8
)))
vec
;
vec foo
(
vec v1
,
vec v2
)
{
try
{
return
v1
/
v2
;
}
catch
(...)
{
throw
;
}
}