Sign in
ara-mdk
/
platform
/
ndk
/
f4f10df3fdd08ef9f466d9b54953c1ba3e64827b
/
.
/
tests
/
device
/
test-stlport_static-exception
/
jni
/
eh6.cpp
blob: c7e0d91d8b8173c4a6bf4c7a78dab4af642b1377 [
file
] [
log
] [
blame
]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
extern
"C"
int
printf
(
const
char
*,
...);
void
main1
()
{
throw
1
;
}
int
main
()
{
try
{
int
main1
();
}
catch
(...)
{
printf
(
"Unwind works!\n"
);
return
0
;
}
return
1
;
}