[PATCH] D51524: [ARM64] [Windows] Handle funclets
Eli Friedman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 2 18:19:54 PDT 2018
efriedma added a comment.
The following testcase is also broken, for reasons I don't understand. I don't think it's a problem with any of the code in this patch, though; the throw out of the "catch" block somehow picks the wrong catch block, but this patch doesn't touch that code.
void a() { try { try { throw 1; } catch (...) { throw 1; } } catch (...) {}}
Repository:
rL LLVM
https://reviews.llvm.org/D51524
More information about the llvm-commits
mailing list