Displaying 2 results from an estimated 2 matches for "cf16d91e".
2015 May 13
2
[LLVMdev] [WinEH] A hiccup for the Windows C++ exception handling
...ad IR, but now we know it is also *practically* impossible. :)
Ultimately, I think something like the dispatchblock scheme I described will work better.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150513/cf16d91e/attachment.html>
2015 May 13
2
[LLVMdev] [WinEH] A hiccup for the Windows C++ exception handling
I've been working recently to get the following test case working for an x86_64-pc-windows-msvc target.
void test1() {
try {
try {
throw 1;
} catch(...) {
throw;
}
} catch (...) {
}
}
I committed a patch earlier in the week to get the WinEHPrepare pass to produce IR that I thought was sufficient, but as I mentioned in the review I was still seeing runtime errors