[llvm] [WebAssemblyLowerEmscriptenEHSjLj] Avoid setting import_name where possible (PR #128564)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 24 11:55:03 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 3532651b6fc1cd637d2e0ab5d979343b24d422f7 e13b62548231dadec5608b4622b246be352b5ead --extensions cpp -- llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
index 6eb61bd4b3..4b697aed3e 100644
--- a/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
+++ b/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
@@ -440,14 +440,13 @@ static std::string getSignature(FunctionType *FTy) {
return Sig;
}
-static Function *getFunction(FunctionType *Ty, const Twine &Name,
- Module *M) {
+static Function *getFunction(FunctionType *Ty, const Twine &Name, Module *M) {
return Function::Create(Ty, GlobalValue::ExternalLinkage, Name, M);
}
static Function *getEmscriptenFunction(FunctionType *Ty, const Twine &Name,
Module *M) {
- Function* F = getFunction(Ty, Name, M);
+ Function *F = getFunction(Ty, Name, M);
// Tell the linker that this function is expected to be imported from the
// 'env' module.
if (!F->hasFnAttribute("wasm-import-module")) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/128564
More information about the llvm-commits
mailing list