[llvm] [WebAssemblyLowerEmscriptenEHSjLj] Avoid setting import_name where possible (PR #128564)

Derek Schuff via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 11:07:56 PST 2025


================
@@ -440,22 +440,25 @@ static std::string getSignature(FunctionType *FTy) {
   return Sig;
 }
 
-static Function *getEmscriptenFunction(FunctionType *Ty, const Twine &Name,
-                                       Module *M) {
-  Function* F = Function::Create(Ty, GlobalValue::ExternalLinkage, Name, M);
+static Function *getFunction(FunctionType *Ty, const Twine &Name, Module *M) {
+  return Function::Create(Ty, GlobalValue::ExternalLinkage, Name, M);
----------------
dschuff wrote:

Yeah I guess I could go either way on that. LGTM for whatever you want to do.

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


More information about the llvm-commits mailing list