search for: aaa1d484

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

2010 Sep 26
0
[LLVMdev] LLVM Exception Handling
...emantics. It would revolve around have a way tie what field of the union is valid to one or more basic blocks. [snip] Thanks for the feedback, -Nathan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100926/aaa1d484/attachment.html>
2010 Sep 26
4
[LLVMdev] LLVM Exception Handling
I may me wrong, but I think Nathan used ints for demonstration purposes only. unwind always takes i8* argument that ideally should be a pointer to exception structure, variable %x in invoke is also typed i8*, it's not "untyped". Probably more llvm-ish syntax would be unwind i8* %x to label %catch to show the type explicitly. However throwing a pointer to a structure raises