[clang] [CodeGen][ObjC] Initial WebAssembly Support for GNUstep v2 (PR #183753)
Jonathan Schleifer via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 3 13:09:52 PST 2026
================
@@ -161,6 +161,8 @@ static const EHPersonality &getObjCPersonality(const TargetInfo &Target,
case ObjCRuntime::GNUstep:
if (T.isOSCygMing())
return EHPersonality::GNU_CPlusPlus_SEH;
+ else if (T.isWasm())
----------------
Midar wrote:
I see nothing GNUstep specific in this PR so far, so I think this should be added independent of the runtime, just like `if (T.isWindowsMSVCEnvironment())` above. WDYT?
https://github.com/llvm/llvm-project/pull/183753
More information about the cfe-commits
mailing list