[clang] [llvm] [WebAssembly,clang] Add __builtin_wasm_test_function_pointer_signature (PR #150201)

Hood Chatham via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 29 01:43:29 PDT 2025


================
@@ -307,6 +310,14 @@ bool WebAssemblyTargetInfo::handleTargetFeatures(
       HasReferenceTypes = false;
       continue;
     }
+    if (Feature == "+gc") {
+      HasGC = true;
+      continue;
+    }
+    if (Feature == "-gc") {
+      HasGC = false;
+      continue;
+    }
----------------
hoodmane wrote:

Opened https://github.com/llvm/llvm-project/pull/151107

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


More information about the llvm-commits mailing list