summaryrefslogtreecommitdiff
path: root/clang/lib/CIR/CodeGen/CIRGenException.cpp
AgeCommit message (Collapse)Author
2025-11-19[CIR][NFC] Fix warnings in release builds (#168791)Andy Kaylor
This fixes several warnings that occur in CIR release builds.
2025-11-16[CIR] Upstream non-empty Try block with catch all (#165158)Amr Hesham
Upstream support for try block and catch all block with a function call that may throw an exception. Issue https://github.com/llvm/llvm-project/issues/154992
2025-10-25[CIR][NFC] Upstream EHPersonality for function (#164883)Amr Hesham
Upstream the EHPersonality class for a function as a prerequisite for working with the handlers Issue #154992
2025-10-21[CIR] Upstream Exception CXXTryStmt (#162528)Amr Hesham
Upstream the basic support for the C++ try catch statement with a try block that doesn't contain any call instructions and with a catch-all statement Issue #154992
2025-10-10[CIR] Upstream Exception with empty try block (#162737)Amr Hesham
Upstream, the basic support for the C++ try catch statement with an empty try block Issue https://github.com/llvm/llvm-project/issues/154992
2025-10-07[CIR] Upstream Exception ThrowOp with subexpr (#161818)Amr Hesham
Upstream the support for ThrowOp with subexpr Issue #154992
2025-08-29[CIR] Upstream Re-Throw with no return (#154994)Amr Hesham
This change adds support for the throw op without sub expression and with noreturn Issue #154992