[clang] [CodeGen][ObjC] Initial WebAssembly Support for GNUstep (PR #169043)
Hugo Melder via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 28 07:32:53 PST 2025
================
@@ -179,8 +179,14 @@ class CGObjCGNU : public CGObjCRuntime {
(R.getVersion() >= VersionTuple(major, minor));
}
- std::string ManglePublicSymbol(StringRef Name) {
- return (StringRef(CGM.getTriple().isOSBinFormatCOFF() ? "$_" : "._") + Name).str();
+ const std::string ManglePublicSymbol(StringRef Name) {
+ StringRef prefix = "._"
+
+ // Exported symbols in Emscripten must be a valid Javascript identifier.
+ auto triple = CGM.getTriple();
----------------
hmelder wrote:
The problem is the missing semicolon :)
```c
StringRef prefix = "._"
```
https://github.com/llvm/llvm-project/pull/169043
More information about the cfe-commits
mailing list