Sign in
ara-mdk
/
platform
/
ndk
/
09c875757c928f4c404251dc24a6c5b2f753868c
/
.
/
tests
/
device
/
test-stlport_shared-exception
/
jni
/
eh49.cpp
blob: 19084fb66f74beb2fe7e1b76b02e3550603f4057 [
file
] [
log
] [
blame
]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions -O9" }
void
main1
()
{
throw
1
;
}
int
main
()
{
try
{
int
main1
();
}
catch
(...)
{
return
0
;
}
return
1
;
}