search for: be66d92a

Displaying 2 results from an estimated 2 matches for "be66d92a".

2007 Aug 30
0
[LLVMdev] RFA: Problem with Exceptions
...cmp against 1 instead and see if that works. > Thanks! > -bw -------------- next part -------------- A non-text attachment was scrubbed... Name: t.gcc.s Type: application/octet-stream Size: 4259 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20070830/be66d92a/attachment.obj> -------------- next part -------------- A non-text attachment was scrubbed... Name: t.llvm.s Type: application/octet-stream Size: 4162 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20070830/be66d92a/attachment-0001.obj> --------------...
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