Simplify test case some more.

It appears that the problem occurs when throwing an Objective-C
exception through and Objective-C++ frame.
main
David Chisnall 8 years ago
parent 760bb785aa
commit f6709519fa

@ -17,7 +17,6 @@ int main(void)
printf("Poked from minRepM\n");
} @catch (Test *localException) {
printf("In NS_HANDLER block, %p\n", localException);
}
}

@ -15,8 +15,6 @@ extern "C" void poke_objcxx(void)
[localException retain];
localException = [localException autorelease];;
rethrow(localException);
} @catch(...) {
printf("Caught in catchall\n");
}
}

Loading…
Cancel
Save