Displaying 1 result from an estimated 1 matches for "996177".
Did you mean:
996147
2007 Aug 30
8
[LLVMdev] RFA: Problem with Exceptions
Hi all,
I'm compiling this trivial program on Darwin:
int main(int argc, char **argv) {
try {
throw argc;
} catch(int i) {
return i;
}
return 0;
}
However, it segfaults when I run it. I've attached the .s files
generated by LLVM and GCC, but it looks as if LLVM isn't generating a
gxx_personality_v0 section (like it does for Unwind_Resume, et al). Is
this what's