[PATCH] D12743: [CodeGen] Teach SimplifyPersonality about the updated LandingPadInst
Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Sep 11 10:40:55 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL247437: [test] Specify exception object type in two tests (authored by vedantk).
Changed prior to commit:
http://reviews.llvm.org/D12743?vs=34408&id=34560#toc
Repository:
rL LLVM
http://reviews.llvm.org/D12743
Files:
cfe/trunk/test/CodeGenObjCXX/exception-cxx.mm
cfe/trunk/test/CodeGenObjCXX/personality-abuse.mm
Index: cfe/trunk/test/CodeGenObjCXX/personality-abuse.mm
===================================================================
--- cfe/trunk/test/CodeGenObjCXX/personality-abuse.mm
+++ cfe/trunk/test/CodeGenObjCXX/personality-abuse.mm
@@ -11,7 +11,7 @@
void foo() {
try {
throw 0;
- } catch (...) {
+ } catch (int e) {
return;
}
}
Index: cfe/trunk/test/CodeGenObjCXX/exception-cxx.mm
===================================================================
--- cfe/trunk/test/CodeGenObjCXX/exception-cxx.mm
+++ cfe/trunk/test/CodeGenObjCXX/exception-cxx.mm
@@ -5,7 +5,7 @@
void foo() {
try {
throw 0;
- } catch (...) {
+ } catch (int e) {
return;
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12743.34560.patch
Type: text/x-patch
Size: 700 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20150911/357b0d9b/attachment.bin>
More information about the cfe-commits
mailing list