[clang] [CIR] Upstream Exception CXXTryStmt (PR #162528)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 17 16:43:47 PDT 2025
================
@@ -37,6 +37,10 @@ CIRGenCXXABI::AddedStructorArgCounts CIRGenCXXABI::addImplicitConstructorArgs(
addedArgs.suffix.size());
}
+CatchTypeInfo CIRGenCXXABI::getCatchAllTypeInfo() {
+ return CatchTypeInfo{nullptr, 0};
----------------
andykaylor wrote:
```suggestion
return CatchTypeInfo{{}, 0};
```
https://github.com/llvm/llvm-project/pull/162528
More information about the cfe-commits
mailing list