[clang] [llvm] [ARM] Add support for Windows SEH (PR #184953)

Hans Wennborg via cfe-commits cfe-commits at lists.llvm.org
Fri Mar 6 04:44:26 PST 2026


================
@@ -1664,7 +1664,8 @@ class TargetInfo : public TransferrableTargetInfo,
   bool isSEHTrySupported() const {
     return getTriple().isOSWindows() &&
            (getTriple().isX86() ||
-            getTriple().getArch() == llvm::Triple::aarch64);
+            getTriple().getArch() == llvm::Triple::aarch64 ||
+            getTriple().isThumb());
----------------
zmodem wrote:

Why only `isThumb()` and not `isArm()`?

https://github.com/llvm/llvm-project/pull/184953


More information about the cfe-commits mailing list