[flang-commits] [flang] [flang] Implement ACOSD and ASIND (PR #80448)

via flang-commits flang-commits at lists.llvm.org
Fri Feb 2 07:39:02 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 a986f5e218ab8a68097fcc1fd3234b8743839ef8 0be3379d546618e8fda486fb4a9eedab18c3057f -- flang/include/flang/Optimizer/Builder/IntrinsicCall.h flang/lib/Optimizer/Builder/IntrinsicCall.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/flang/lib/Optimizer/Builder/IntrinsicCall.cpp b/flang/lib/Optimizer/Builder/IntrinsicCall.cpp
index 4e874d9fb1..f84be5d49c 100644
--- a/flang/lib/Optimizer/Builder/IntrinsicCall.cpp
+++ b/flang/lib/Optimizer/Builder/IntrinsicCall.cpp
@@ -2007,7 +2007,7 @@ mlir::Value IntrinsicLibrary::genAbs(mlir::Type resultType,
 
 // ACOSD
 mlir::Value IntrinsicLibrary::genAcosd(mlir::Type resultType,
-                                      llvm::ArrayRef<mlir::Value> args) {
+                                       llvm::ArrayRef<mlir::Value> args) {
   assert(args.size() == 1);
   mlir::MLIRContext *context = builder.getContext();
   mlir::FunctionType ftype =
@@ -2158,7 +2158,7 @@ IntrinsicLibrary::genAny(mlir::Type resultType,
 
 // ASIND
 mlir::Value IntrinsicLibrary::genAsind(mlir::Type resultType,
-                                      llvm::ArrayRef<mlir::Value> args) {
+                                       llvm::ArrayRef<mlir::Value> args) {
   assert(args.size() == 1);
   mlir::MLIRContext *context = builder.getContext();
   mlir::FunctionType ftype =

``````````

</details>


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


More information about the flang-commits mailing list