search for: f290d450

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

2014 Feb 07
2
[LLVMdev] Unwind behaviour in Clang/LLVM
..., etc), to be used by both front and back ends, so then we don't have to worry about changing all sides whenever a default changes. cheers, --renato -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140207/f290d450/attachment.html>
2014 Feb 06
2
[LLVMdev] Unwind behaviour in Clang/LLVM
On 6 February 2014 19:21, Richard Smith <richard at metafoo.co.uk> wrote: > > if (nounwind) > can't unwind > can't unwind == unwind table + no EH directives + no EH table if (uwtable || (!nounwind && need uwtable to unwind)) > unwind table > "need unwind table to unwind" is probably true in almost all cases. At least in all where