[llvm] [WebAssemblyLowerEmscriptenEHSjLj] Avoid setting import_name where possible (PR #128564)
Sam Clegg via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 14:33:18 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);
----------------
sbc100 wrote:
I guess it avoids typing `GlobalValue::ExternalLinkage` a lot?
https://github.com/llvm/llvm-project/pull/128564
More information about the llvm-commits
mailing list