[flang-commits] [flang] [Flang] Adjust the trampoline size for AArch64 and PPC (PR #118678)
via flang-commits
flang-commits at lists.llvm.org
Wed Dec 4 10:18:28 PST 2024
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 969b7658fe34cf7638e1385d813e765a4c61dfc7 d85342a75718f644fe3e36fbe6e3733326761d26 --extensions cpp -- flang/lib/Optimizer/CodeGen/BoxedProcedure.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/flang/lib/Optimizer/CodeGen/BoxedProcedure.cpp b/flang/lib/Optimizer/CodeGen/BoxedProcedure.cpp
index a942c80bf4..44b6140655 100644
--- a/flang/lib/Optimizer/CodeGen/BoxedProcedure.cpp
+++ b/flang/lib/Optimizer/CodeGen/BoxedProcedure.cpp
@@ -278,7 +278,7 @@ public:
else if (triple.isPPC64())
thunkSize = 48;
else if (triple.isAArch64())
- thunkSize = 36;
+ thunkSize = 36;
mlir::Type buffTy = SequenceType::get({thunkSize}, i8Ty);
auto buffer = builder.create<AllocaOp>(loc, buffTy);
mlir::Value closure =
``````````
</details>
https://github.com/llvm/llvm-project/pull/118678
More information about the flang-commits
mailing list